/*
Plugin stylesheet: BehzadKala Site Styles
Source: Woodmart Global Custom CSS backup
Version: 1.0.0

Migration rule:
1. Activate this plugin while the original Woodmart CSS is still present.
2. Test the front end on desktop and mobile.
3. Only then remove the transferred CSS from Woodmart Theme Settings.
4. Keep WordPress Additional CSS unchanged for now.
*/

.shop_attributes tr
{
	justify-content: right;
}
/* ==========================================================
   BK Product Specs V2
   BehzadKala.com
========================================================== */

.bk-product-specs{
    margin:24px 0;
}

/* عنوان */

.bk-product-specs-header h3{
    margin:0 0 18px;
    font-size:22px;
    font-weight:700;
    color:#222;
    line-height:1.4;
}

/* گرید */

.bk-product-specs-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}

/* کارت */

.bk-spec-item{

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    height:100%;

    padding:14px;

    border:1px solid #ececec;
    border-radius:14px;

    background:#fff;

    transition:all .25s ease;

    box-shadow:0 2px 6px rgba(0,0,0,.04);

}


/* هاور */

.bk-spec-item:hover{

    transform:translateY(-2px);

    border-color:#d8d8d8;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

}

/* عنوان ویژگی */

.bk-spec-title{

    margin-bottom:6px;

    font-size:13px;

    font-weight:700;

    color:#222;

    line-height:1.6;

}

/* مقدار ویژگی */

.bk-spec-value{

    color:#666;

    font-size:13px;

    line-height:1.8;

    overflow-wrap:anywhere;

    word-break:break-word;

}

.bk-spec-value span{

    display:block;

}

/* مشاهده همه مشخصات */

.bk-product-specs-footer{

    display:flex;

    align-items:center;

    gap:14px;

    margin-top:22px;

}

/* دو خط طرفین */

.bk-product-specs-footer::before,

.bk-product-specs-footer::after{

    content:"";

    flex:1;

    height:1px;

    background:#e5e5e5;

}

/* دکمه */

.bk-show-all-specs{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    text-decoration:none;

    padding:9px 18px;

    border-radius:999px;

    border:1px solid #e4e4e4;

    background:#fbfbfc;

    color:#333;

    font-size:13px;

    font-weight:600;

    transition:all .25s ease;

    box-shadow:0 1px 3px rgba(0,0,0,.04);

}

.bk-show-all-specs:hover{

    background:#fafafa;

    border-color:#d4d4d4;

    color:#111;

    transform:translateY(-1px);

    box-shadow:0 6px 14px rgba(0,0,0,.08);

}

/* ==========================
   Tablet
========================== */

@media (max-width:768px){

    .bk-product-specs-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

    }

}

/* ==========================
   Mobile
========================== */

@media (max-width:480px){

    .bk-product-specs-grid{

        grid-template-columns:1fr;

    }

    .bk-product-specs-header h3{

        font-size:20px;

    }

    .bk-show-all-specs{

        width:100%;

    }

}

/*==================================
      نوار 4 کارت بالای فوتر
===================================*/

.bk-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.bk-service {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(180deg, #ffffff, #fbfcfe);
    border: 1px solid #eef2f7;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(25, 45, 72, .05);
    transition: all .28s ease;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.bk-service:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2F6DF6;
    opacity: 0;
    transition: .28s;
}

.bk-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(47, 109, 246, .12);
    border-color: #2F6DF6;
}

.bk-service:hover:before {
    opacity: 1;
}

.bk-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F6DF6;
    flex-shrink: 0;
    transition: .3s;
}

.bk-service-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.bk-service:hover .bk-service-icon {
    background: #2F6DF6;
    color: #fff;
    transform: scale(1.08);
}

.bk-service-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bk-service-text strong {
    font-size: 17px;
    font-weight: 700;
    color: #1d2433;
    margin-bottom: 6px;
    line-height: 1.5;
}

.bk-service-text span {
    font-size: 14px;
    color: #70798a;
    line-height: 1.9;
}


/*==================================
              Tablet
===================================*/

@media (max-width: 991px) {

    .bk-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

}


/*==================================
              Mobile
===================================*/

@media (max-width: 576px) {

    .bk-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bk-service {
        gap: 9px;
        padding: 14px 10px;
        min-height: 72px;
        border-radius: 14px;
    }

    .bk-service-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .bk-service-icon svg {
        width: 22px;
        height: 22px;
    }

    .bk-service-text {
        flex: 1;
        min-width: 0;
    }

    .bk-service-text strong {
        font-size: 12px;
        margin-bottom: 2px;
        white-space: nowrap;
    }

    .bk-service-text span {
        font-size: 10px;
        line-height: 1.5;
        white-space: nowrap;
    }

}


/*==================================
         موبایل خیلی کوچک
===================================*/

@media (max-width: 380px) {

    .bk-services {
        gap: 8px;
    }

    .bk-service {
        gap: 7px;
        padding: 12px 8px;
    }

    .bk-service-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .bk-service-icon svg {
        width: 19px;
        height: 19px;
    }

    .bk-service-text strong {
        font-size: 11px;
    }

    .bk-service-text span {
        font-size: 9px;
    }

}
/*==================================
            کدهای اینماد
===================================*/

.bk-enamad{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:auto;
    margin:auto;
}

.bk-enamad a{
    display:inline-block;
    flex:0 0 auto;
}

.bk-enamad img{
    width:90px;
    height:auto;
    display:block;
}

/*==================================
            کدهای فوتر پایین
===================================*/

.bk-footer-contact{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:16px;
    flex-wrap:nowrap;
    width:100%;
}

.bk-footer-contact .bk-contact{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    padding-left:0;
    padding-inline-end:12px;
}

.bk-footer-contact .bk-contact:not(:first-child)::after{
    content:"";
    position:absolute;
    right:-6px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:26px;
    background:rgba(255,255,255,.15);
}

.bk-contact-text{
    display:flex;
    flex-direction:column;
    line-height:1.5;
}

.bk-contact-text strong{
    font-size:15px;
    font-weight:700;
    color:#fff;
}

.bk-contact-text span{
    font-size:13px;
    color:rgba(255,255,255,.65);
    margin-top:2px;
}

/* ---------- موبایل ---------- */

@media(max-width:768px){

.bk-footer-contact{

display:flex;
flex-direction:column;
align-items:flex-start;
gap:18px;

}

.bk-footer-contact .bk-contact{

width:100%;
padding:0;
margin:0;

}

.bk-footer-contact .bk-contact::after{

display:none;

}

}

/*==============================
      آیکون های شبکه اجتماعی
==============================*/

.bk-socials{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;

    margin-top:10px;

    flex-wrap:wrap;

}

.bk-social{

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    transition:all .28s ease;

    text-decoration:none;

}

.bk-social img{

    width:27px;
    height:27px;

    object-fit:contain;

    display:block;

    transition:.28s ease;

}

/* Hover */

.bk-social:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.22);

}

/* Brand Colors */

.bk-social.whatsapp:hover{

    background:#25D366;

    border-color:#25D366;

}

.bk-social.instagram:hover{

    background:#E4405F;

    border-color:#E4405F;

}

.bk-social.eitaa:hover{

    background:#1E88E5;

    border-color:#1E88E5;

}

.bk-social.bale:hover{

    background:#00A884;

    border-color:#00A884;

}

.bk-social.telegram:hover{

    background:#405DE6;

    border-color:#405DE6;

}

/* کمی تنظیم اندازه برای هماهنگی بصری */

.bk-social.whatsapp img{

    width:27px;

}

.bk-social.instagram img{

    width:27px;

}


.bk-social.bale img{

    width:26px;

}

.bk-social.telegram img{

    width:27px;

}

/* Mobile */

@media(max-width:767px){

.bk-socials{

    gap:10px;

}

.bk-social{

    width:46px;
    height:46px;

    border-radius:14px;

}

.bk-social img{

    width:24px;
    height:24px;

}

}

.bk-social{

backdrop-filter:blur(8px);

-webkit-backdrop-filter:blur(8px);

}

/* ===== درباره بهزاد کالا ===== */

.bk-about{

background:#fff;
border-radius:22px;
padding:35px 40px;
border:1px solid #edf2f7;
box-shadow:0 8px 30px rgba(15,23,42,.05);
transition:.3s;

}

.bk-about:hover{

transform:translateY(-3px);
box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.bk-about__header{

display:flex;
align-items:center;
justify-content:center;
gap:18px;
margin-bottom:28px;
flex-wrap:wrap;

}

.bk-about__logo{

width:72px;
height:auto;
display:block;

}

.bk-about__header h2{

margin:0;
font-size:36px;
font-weight:800;
color:#1e293b;
line-height:1.5;

}

.bk-about__header h2 span{

font-size:.85em;
font-weight:700;
color:#1e293b;

}

.bk-about__text{

max-width:1050px;
margin:auto;

}

.bk-about__text p{

margin:0 0 18px;
font-size:17px;
line-height:2.3;
color:#52607a;
text-align:justify;
text-align-last:center;

}

.bk-about__more{

display:none;

}

.bk-about__more.active{

display:block;

}

.bk-about__toggle{

display:inline-flex;
align-items:center;
justify-content:center;

margin-top:10px;

padding:12px 30px;

background:#2563eb;

color:#fff;

border:none;

border-radius:40px;

font-size:15px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.bk-about__toggle:hover{

background:#1d4ed8;

transform:translateY(-2px);

}

@media(max-width:768px){

.bk-about{

padding:25px 18px;

}

.bk-about__header{

flex-direction:column;

gap:14px;

}

.bk-about__header h2{

font-size:26px;
text-align:center;

}

.bk-about__text p{

font-size:15px;
line-height:2;

text-align:right;
text-align-last:right;

}

.bk-about__toggle{

width:100%;

}

}

/* رفع وسط‌چین شدن متن */

.bk-about__text{
    text-align:right !important;
}

.bk-about__text p{
    text-align:justify !important;
    text-align-last:right !important;
    direction:rtl;
}

.bk-about__more{
    text-align:right !important;
}

.bk-about__more p{
    text-align:justify !important;
    text-align-last:right !important;
}
/*==================================================
=            اسم بهزاد کالا با لوگو پایین سایت
==================================================*/
.bk-brand{

display:flex;
align-items:center;
justify-content:center;
gap:18px;
margin:0 auto 30px;
direction:rtl;

}

.bk-brand__logo{

width:90px;
height:auto;
flex-shrink:0;
display:block;

}

.bk-brand__text{

display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;

}

.bk-brand__text h2{

margin:0;
font-size:30px;
font-weight:800;
line-height:1;
color:#ffffff;

}

.bk-brand__text span{

margin:0;
font-size:14px;
font-weight:500;
color:#d1d9e6;

}

/* موبایل */

@media (max-width:768px){

.bk-brand{

flex-direction:column;
gap:16px;

}

.bk-brand__text{

flex-direction:column;
text-align:center;
gap:8px;

}

.bk-brand__text h2{

font-size:28px;

}

.bk-brand__text span{

font-size:15px;

}

}

/*==================================
      دسته بندی فوتر محصولات
==================================*/

.bk-footer-links{

list-style:none;

padding:0;

margin:0;

}

.bk-footer-links li{

margin-bottom:14px;

}

.bk-footer-links li:last-child{

margin-bottom:0;

}

.bk-footer-links a{

display:flex;

align-items:center;

gap:12px;

text-decoration:none;

color:rgba(255,255,255,.78);

font-size:15px;

font-weight:500;

transition:all .25s ease;

}

.bk-footer-links img{

width:18px;

height:18px;

display:block;

flex-shrink:0;

filter:brightness(0) invert(1);

opacity:.85;

transition:all .25s ease;

}

.bk-footer-links a:hover{

color:#ffffff;

transform:translateX(-4px);

}

.bk-footer-links a:hover img{

opacity:1;

transform:scale(1.12);

}

.bk-footer-links span{

line-height:1.8;

}

/*==================================================
  BehzadKala Mega Menu V1
==================================================*/

.bk-mega-column{
    min-width:220px;
    padding:0 18px;
}

.bk-mega-title{
    margin:0 0 18px;
    padding-bottom:10px;
    border-bottom:2px solid #2563EB;
    font-size:17px;
    font-weight:700;
    line-height:1.4;
}

.bk-mega-title a{
    color:#111827;
    text-decoration:none;
    transition:.25s ease;
}

.bk-mega-title a:hover{
    color:#2563EB;
}

.bk-mega-links{
    list-style:none;
    margin:0;
    padding:0;
}

.bk-mega-links li{
    margin-bottom:10px;
}

.bk-mega-links li:last-child{
    margin-bottom:0;
}

.bk-mega-links a{
    display:inline-block;
    color:#4B5563;
    font-size:14px;
    text-decoration:none;
    transition:all .25s ease;
    line-height:1.8;
}

.bk-mega-links a:hover{
    color:#2563EB;
    padding-right:6px;
    font-weight:600;
}

/* مشاهده همه */

.bk-mega-links li:last-child a{

    color:#2563EB;
    font-weight:600;

}

.bk-mega-links li:last-child a:hover{

    padding-right:10px;

}

/* آیتم های نوار بالای هدر */

.bk-top-item{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#2f3542;
    font-weight:500;
    white-space:nowrap;
}

.bk-top-item img{
    width:18px;
    height:18px;
    flex-shrink:0;
}

.bk-top-item span{
    line-height:1;
}
.bk-top-item strong{
    font-weight:700;
    color:#111827;
}

.bk-divider{
    color:#c5cbd6;
    margin:0 8px;
}
/* شبکه های اجتماعی هدر */

.bk-top-social{
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.bk-social-title{
    font-size:14px;
    font-weight:500;
    color:#2f3542;
}

.bk-top-social a{
    display:flex;
    align-items:center;
    transition:all .25s ease;
}

.bk-top-social img{
    width:18px;
    height:18px;
    display:block;
}

.bk-top-social a:hover{
    transform:translateY(-2px);
    opacity:.85;
}

/* =====================================================
   Behzad Kala - Repair Request Process
===================================================== */

.bk-repair-flow,
.bk-repair-flow * {
    box-sizing: border-box;
}

.bk-repair-flow {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 20px 20px;
    direction: rtl;
    font-family: inherit;
}

/* عنوان بخش */

.bk-repair-flow__heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.bk-repair-flow__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(28, 101, 230, 0.14);
    border-radius: 100px;
    background: rgba(28, 101, 230, 0.07);
    color: #1764dc;
    font-size: 13px;
    font-weight: 700;
}

.bk-repair-flow__heading h2 {
    position: relative;
    margin: 0;
    padding-bottom: 18px;
    color: #0b2147;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.5;
}

.bk-repair-flow__heading h2::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 10px;
    background: #1764dc;
    transform: translateX(50%);
}

.bk-repair-flow__heading p {
    margin: 18px 0 0;
    color: #6c7788;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

/* مراحل */

.bk-repair-flow__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

.bk-repair-flow__step {
    position: relative;
    min-width: 0;
    min-height: 250px;
    padding: 32px 16px 24px;
    overflow: hidden;
    border: 1px solid #e6edf8;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(17, 45, 91, 0.07);
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.bk-repair-flow__step::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(23, 100, 220, 0.04);
    pointer-events: none;
}

.bk-repair-flow__step:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 100, 220, 0.24);
    box-shadow: 0 17px 42px rgba(17, 45, 91, 0.12);
}

.bk-repair-flow__number {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1764dc;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 7px 16px rgba(23, 100, 220, 0.24);
}

.bk-repair-flow__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 8px auto 18px;
    border: 1px solid rgba(23, 100, 220, 0.12);
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        rgba(23, 100, 220, 0.13),
        rgba(23, 100, 220, 0.035)
    );
    color: #1764dc;
}

.bk-repair-flow__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repair-flow__step h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #0b2147;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-repair-flow__step p {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    color: #707b8b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.95;
}

/* نوار مزایا */

.bk-repair-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
    padding: 22px 20px;
    border: 1px solid #e5edf9;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(23, 100, 220, 0.075),
        rgba(23, 100, 220, 0.025)
    );
    box-shadow: 0 10px 28px rgba(17, 45, 91, 0.05);
}

.bk-repair-benefits__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 0;
    padding: 6px 18px;
}

.bk-repair-benefits__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 1px;
    height: 80%;
    background: rgba(23, 100, 220, 0.18);
}

.bk-repair-benefits__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-radius: 15px;
    background: #ffffff;
    color: #1764dc;
    box-shadow: 0 6px 16px rgba(17, 45, 91, 0.06);
}

.bk-repair-benefits__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repair-benefits__item div:last-child {
    min-width: 0;
}

.bk-repair-benefits__item strong {
    display: block;
    margin-bottom: 4px;
    color: #0b2147;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
}

.bk-repair-benefits__item span {
    display: block;
    color: #717c8c;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
}

/* نمایش لپ‌تاپ کوچک و تبلت */

@media (max-width: 1100px) {
    .bk-repair-flow__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bk-repair-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 0;
    }

    .bk-repair-benefits__item:nth-child(2)::after {
        display: none;
    }
}

/* نمایش تبلت */

@media (max-width: 800px) {
    .bk-repair-flow {
        padding-top: 38px;
    }

    .bk-repair-flow__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bk-repair-flow__step {
        min-height: 235px;
    }
}

/* نمایش موبایل */

@media (max-width: 600px) {
    .bk-repair-flow {
        padding: 30px 12px 12px;
    }

    .bk-repair-flow__heading {
        margin-bottom: 26px;
    }

    .bk-repair-flow__heading h2 {
        font-size: 23px;
    }

    .bk-repair-flow__heading p {
        font-size: 14px;
        line-height: 1.9;
    }

    .bk-repair-flow__steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bk-repair-flow__step {
        min-height: auto;
        padding: 28px 22px 24px;
        border-radius: 17px;
    }

    .bk-repair-flow__icon {
        width: 67px;
        height: 67px;
        border-radius: 19px;
    }

    .bk-repair-flow__step h3 {
        font-size: 17px;
    }

    .bk-repair-flow__step p {
        max-width: 300px;
        font-size: 13px;
    }

    .bk-repair-benefits {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 18px;
        padding: 8px 18px;
        border-radius: 17px;
    }

    .bk-repair-benefits__item {
        justify-content: flex-start;
        padding: 15px 4px;
    }

    .bk-repair-benefits__item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
        display: block;
        width: 100%;
        height: 1px;
    }
}

/* =====================================================
   Behzad Kala - Contact Form 7 Repair Request
===================================================== */

.bk-repair-form,
.bk-repair-form * {
    box-sizing: border-box;
}

.bk-repair-form {
    width: 100%;
    max-width: 1240px;
    margin: 25px auto 60px;
    padding: 38px;
    direction: rtl;
    border: 1px solid #e7edf7;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 42, 84, 0.08);
    font-family: inherit;
}

/* هدر فرم */

.bk-repair-form__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    text-align: right;
}

.bk-repair-form__header-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(23, 100, 220, 0.15),
        rgba(23, 100, 220, 0.04)
    );
    color: #1764dc;
}

.bk-repair-form__header-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repair-form__header h2 {
    margin: 0 0 5px;
    color: #0b2147;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.5;
}

.bk-repair-form__header p {
    margin: 0;
    color: #6e7989;
    font-size: 14px;
    line-height: 1.9;
}

.bk-repair-form__required-note {
    margin: 0 0 25px;
    color: #7a8492;
    font-size: 12px;
    text-align: center;
}

.bk-repair-form__required-note span,
.bk-repair-field label > span,
.bk-repair-contact-method legend > span {
    color: #e12929;
}

/* گرید فرم */

.bk-repair-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.bk-repair-field {
    min-width: 0;
}

.bk-repair-field--full {
    width: 100%;
    margin-top: 22px;
}

.bk-repair-field label,
.bk-repair-contact-method legend {
    display: block;
    margin-bottom: 9px;
    color: #14284a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.bk-repair-field label small {
    margin-right: 5px;
    color: #7b8593;
    font-size: 11px;
    font-weight: 500;
}

/* ورودی‌ها */

.bk-repair-form input[type="text"],
.bk-repair-form input[type="tel"],
.bk-repair-form input[type="email"],
.bk-repair-form select,
.bk-repair-form textarea {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #dfe6f1;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    color: #17243a;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.7;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.bk-repair-form textarea {
    min-height: 145px;
    resize: vertical;
}

.bk-repair-form input::placeholder,
.bk-repair-form textarea::placeholder {
    color: #9aa3b0;
    opacity: 1;
}

.bk-repair-form select {
    cursor: pointer;
}

.bk-repair-form input[type="text"]:focus,
.bk-repair-form input[type="tel"]:focus,
.bk-repair-form input[type="email"]:focus,
.bk-repair-form select:focus,
.bk-repair-form textarea:focus {
    border-color: #1764dc;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 100, 220, 0.08);
}

/* توضیح کمکی */

.bk-repair-field__help {
    margin: -2px 0 10px;
    color: #7b8594;
    font-size: 12px;
    line-height: 1.8;
}

/* روش اطلاع‌رسانی */

.bk-repair-contact-method {
    margin: 24px 0 0;
    padding: 22px;
    border: 1px solid #e4ebf6;
    border-radius: 18px;
    background: #f9fbff;
}

.bk-repair-contact-method legend {
    padding: 0 8px;
    font-size: 15px;
}

.bk-repair-contact-method > p {
    margin: 0 0 16px;
    color: #737e8d;
    font-size: 12px;
    line-height: 1.8;
}

.bk-repair-contact-method .wpcf7-form-control {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bk-repair-contact-method .wpcf7-list-item {
    margin: 0;
}

.bk-repair-contact-method .wpcf7-list-item label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #dfe6f1;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-repair-contact-method .wpcf7-list-item label:hover {
    border-color: rgba(23, 100, 220, 0.45);
    background: #f5f9ff;
}

.bk-repair-contact-method input[type="radio"] {
    width: 17px;
    height: 17px;
    margin: 0 0 0 9px;
    accent-color: #1764dc;
}

.bk-repair-contact-method input[type="radio"]:checked + .wpcf7-list-item-label {
    color: #1764dc;
    font-weight: 700;
}

/* آپلود فایل */

.bk-repair-form input[type="file"] {
    width: 100%;
    padding: 13px;
    border: 1px dashed #bfcce0;
    border-radius: 13px;
    background: #f9fbff;
    color: #626d7c;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
}

.bk-repair-form input[type="file"]::file-selector-button {
    margin-left: 12px;
    padding: 9px 15px;
    border: 0;
    border-radius: 9px;
    background: #1764dc;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* پیام احراز مالکیت */

.bk-repair-form__notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 22px;
    padding: 17px 19px;
    border: 1px solid #dce8fb;
    border-radius: 15px;
    background: #f4f8ff;
}

.bk-repair-form__notice-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 11px;
    background: #ffffff;
    color: #1764dc;
}

.bk-repair-form__notice-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repair-form__notice p {
    margin: 0;
    color: #536177;
    font-size: 13px;
    line-height: 1.9;
}

/* تأیید حذف اطلاعات */

.bk-repair-field--consent {
    margin-top: 20px;
    padding: 15px 17px;
    border: 1px solid #e4e9f1;
    border-radius: 13px;
    background: #fcfcfd;
}

.bk-repair-field--consent .wpcf7-list-item {
    margin: 0;
}

.bk-repair-field--consent label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    color: #5d6877;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.9;
    cursor: pointer;
}

.bk-repair-field--consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 5px;
    accent-color: #1764dc;
}

/* دکمه ثبت */

.bk-repair-form__submit {
    margin-top: 28px;
    text-align: center;
}

.bk-repair-form input[type="submit"] {
    width: 100%;
    min-height: 56px;
    padding: 13px 25px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #1764dc, #0849be);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(23, 100, 220, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.bk-repair-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(23, 100, 220, 0.28);
}

.bk-repair-form input[type="submit"]:active {
    transform: translateY(0);
}

.bk-repair-form input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

/* خطاها و پیام‌های Contact Form 7 */

.bk-repair-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #d7263d;
    font-size: 11px;
}

.bk-repair-form .wpcf7-not-valid {
    border-color: #e45b6b !important;
    box-shadow: 0 0 0 3px rgba(228, 91, 107, 0.08) !important;
}

.wpcf7 form .wpcf7-response-output {
    max-width: 1240px;
    margin: 20px auto !important;
    padding: 14px 18px !important;
    border-width: 1px !important;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.9;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #36a269 !important;
    background: #f0fff6;
    color: #237348;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border-color: #e0a32e !important;
    background: #fffaf0;
    color: #825c14;
}

/* اسپینر */

.bk-repair-form .wpcf7-spinner {
    margin: 12px auto 0;
}

/* تبلت */

@media (max-width: 900px) {
    .bk-repair-form {
        padding: 30px 24px;
    }

    .bk-repair-form__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* موبایل */

@media (max-width: 600px) {
    .bk-repair-form {
        margin-top: 15px;
        padding: 24px 15px;
        border-radius: 18px;
    }

    .bk-repair-form__header {
        flex-direction: column;
        text-align: center;
    }

    .bk-repair-form__header h2 {
        font-size: 23px;
    }

    .bk-repair-form__header p {
        font-size: 13px;
    }

    .bk-repair-form__header-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .bk-repair-contact-method {
        padding: 18px 14px;
    }

    .bk-repair-contact-method .wpcf7-form-control {
        grid-template-columns: 1fr;
    }

    .bk-repair-contact-method .wpcf7-list-item label {
        justify-content: flex-start;
    }

    .bk-repair-form__notice {
        padding: 15px;
    }

    .bk-repair-form input[type="submit"] {
        min-height: 54px;
    }
}

/* =====================================================
   Behzad Kala - Contact Page Hero
===================================================== */

.bk-contact-hero,
.bk-contact-hero * {
    box-sizing: border-box;
}

.bk-contact-hero {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1240px;
    min-height: 390px;
    margin: 28px auto 0;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #e4ecf8;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(29, 101, 230, 0.11),
            transparent 25%
        ),
        linear-gradient(135deg, #f9fbff 0%, #eef5ff 100%);
    box-shadow: 0 16px 45px rgba(14, 44, 92, 0.08);
}

.bk-contact-hero::before,
.bk-contact-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.bk-contact-hero::before {
    top: -170px;
    right: -130px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(29, 101, 230, 0.07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(29, 101, 230, 0.025),
        0 0 0 65px rgba(29, 101, 230, 0.018);
}

.bk-contact-hero::after {
    right: 42%;
    bottom: -190px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
}

.bk-contact-hero__content,
.bk-contact-hero__media {
    position: relative;
    z-index: 1;
}

.bk-contact-hero__content {
    flex: 1 1 55%;
    min-width: 0;
}

.bk-contact-hero__media {
    flex: 1 1 45%;
    min-width: 0;
}

.bk-contact-intro {
    width: 100%;
    max-width: 650px;
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.bk-contact-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border: 1px solid rgba(29, 101, 230, 0.13);
    border-radius: 100px;
    background: rgba(29, 101, 230, 0.08);
    color: #1764dc;
    font-size: 13px;
    font-weight: 700;
}

.bk-contact-intro__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bk-contact-intro__badge-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-intro h1 {
    margin: 0;
    color: #0a2149;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.35;
}

.bk-contact-intro__line {
    display: block;
    width: 58px;
    height: 4px;
    margin: 17px 0 18px auto;
    border-radius: 10px;
    background: #1764dc;
}

.bk-contact-intro__description {
    max-width: 610px;
    margin: 0;
    color: #5f6d81;
    font-size: 15px;
    line-height: 2.1;
}

.bk-contact-intro__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 27px;
}

.bk-contact-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(29, 101, 230, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 22px rgba(20, 48, 90, 0.045);
}

.bk-contact-feature__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(29, 101, 230, 0.1);
    color: #1764dc;
}

.bk-contact-feature__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-feature div {
    min-width: 0;
}

.bk-contact-feature strong {
    display: block;
    margin-bottom: 2px;
    color: #13284b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
}

.bk-contact-feature span:last-child {
    display: block;
    color: #758092;
    font-size: 11px;
    line-height: 1.6;
}

/* تصویر */

.bk-contact-hero__image,
.bk-contact-hero__image .elementor-widget-container,
.bk-contact-hero__image img {
    width: 100%;
    height: 100%;
}

.bk-contact-hero__image .elementor-widget-container {
    overflow: hidden;
    border-radius: 21px;
    box-shadow: 0 15px 36px rgba(13, 39, 78, 0.13);
}

.bk-contact-hero__image img {
    display: block;
    min-height: 315px;
    object-fit: cover;
    object-position: center;
}

/* تبلت */

@media (max-width: 1024px) {
    .bk-contact-hero {
        width: calc(100% - 28px);
        padding: 28px;
    }

    .bk-contact-intro__features {
        grid-template-columns: 1fr;
    }

    .bk-contact-feature {
        max-width: 430px;
    }
}

/* موبایل */

@media (max-width: 767px) {
    .bk-contact-hero {
        width: calc(100% - 20px);
        min-height: 0;
        margin-top: 16px;
        padding: 22px 15px;
        border-radius: 20px;
    }

    .bk-contact-hero > .e-con-inner,
    .bk-contact-hero {
        flex-direction: column;
    }

    .bk-contact-hero__content,
    .bk-contact-hero__media {
        flex-basis: 100%;
        width: 100%;
    }

    .bk-contact-hero__content {
        order: 1;
    }

    .bk-contact-hero__media {
        order: 2;
        margin-top: 22px;
    }

    .bk-contact-intro {
        max-width: none;
        text-align: center;
    }

    .bk-contact-intro__badge {
        margin-bottom: 14px;
    }

    .bk-contact-intro h1 {
        font-size: 32px;
    }

    .bk-contact-intro__line {
        margin-right: auto;
        margin-left: auto;
    }

    .bk-contact-intro__description {
        font-size: 14px;
        line-height: 2;
    }

    .bk-contact-intro__features {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .bk-contact-feature {
        justify-content: flex-start;
        max-width: none;
        text-align: right;
    }

    .bk-contact-hero__image img {
        min-height: 245px;
    }
}

/* =====================================================
   Behzad Kala - Contact Channels
===================================================== */

.bk-contact-channels,
.bk-contact-channels * {
    box-sizing: border-box;
}

.bk-contact-channels {
    width: calc(100% - 40px);
    max-width: 1240px;
    margin: 0 auto;
    padding: 55px 0 20px;
    direction: rtl;
    font-family: inherit;
}

/* عنوان */

.bk-contact-channels__header {
    max-width: 740px;
    margin: 0 auto 34px;
    text-align: center;
}

.bk-contact-channels__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 6px 15px;
    border: 1px solid rgba(23, 100, 220, 0.13);
    border-radius: 100px;
    background: rgba(23, 100, 220, 0.07);
    color: #1764dc;
    font-size: 13px;
    font-weight: 700;
}

.bk-contact-channels__header h2 {
    position: relative;
    margin: 0;
    padding-bottom: 18px;
    color: #0b2147;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.5;
}

.bk-contact-channels__header h2::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 10px;
    background: #1764dc;
    transform: translateX(50%);
}

.bk-contact-channels__header p {
    margin: 17px 0 0;
    color: #6e7989;
    font-size: 14px;
    line-height: 2;
}

/* گرید */

.bk-contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* کارت */

.bk-contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 330px;
    padding: 24px 21px 20px;
    overflow: hidden;
    border: 1px solid #e5ecf6;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 13px 35px rgba(17, 45, 91, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.bk-contact-card::before {
    content: "";
    position: absolute;
    top: -75px;
    left: -75px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(23, 100, 220, 0.045);
    pointer-events: none;
}

.bk-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 100, 220, 0.23);
    box-shadow: 0 20px 45px rgba(17, 45, 91, 0.12);
}

.bk-contact-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 19px;
}

.bk-contact-card__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(23, 100, 220, 0.11);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(23, 100, 220, 0.14),
        rgba(23, 100, 220, 0.035)
    );
    color: #1764dc;
}

.bk-contact-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-card__status {
    padding: 5px 9px;
    border-radius: 50px;
    background: #f3f7fd;
    color: #6d7888;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.bk-contact-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 9px;
    color: #0b2147;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-contact-card > p {
    position: relative;
    z-index: 1;
    min-height: 82px;
    margin: 0 0 17px;
    color: #707b8b;
    font-size: 13px;
    line-height: 1.9;
}

.bk-contact-card__value {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 19px;
    color: #1764dc;
    font-family: inherit;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.bk-contact-card__value--email {
    font-size: 14px;
}

.bk-contact-card__action {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 44px;
    margin-top: auto;
    padding: 10px 14px;
    border: 1px solid rgba(23, 100, 220, 0.15);
    border-radius: 11px;
    background: #f5f9ff;
    color: #1764dc;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.bk-contact-card__action:hover {
    border-color: #1764dc;
    background: #1764dc;
    color: #ffffff;
}

.bk-contact-card__action svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ساعات کاری */

.bk-contact-card__schedule {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 1px;
}

.bk-contact-card__schedule > div {
    padding: 10px 12px;
    border: 1px solid #e8edf5;
    border-radius: 11px;
    background: #fafcff;
}

.bk-contact-card__schedule span,
.bk-contact-card__schedule strong {
    display: block;
}

.bk-contact-card__schedule span {
    margin-bottom: 3px;
    color: #798392;
    font-size: 10px;
}

.bk-contact-card__schedule strong {
    color: #172c4d;
    font-size: 12px;
    line-height: 1.7;
}

/* تفاوت جزئی واتساپ */

.bk-contact-card--whatsapp .bk-contact-card__icon {
    color: #138b58;
    background: rgba(19, 139, 88, 0.08);
    border-color: rgba(19, 139, 88, 0.12);
}

.bk-contact-card--whatsapp .bk-contact-card__value {
    color: #138b58;
}

.bk-contact-card--whatsapp .bk-contact-card__action {
    color: #138b58;
    background: rgba(19, 139, 88, 0.055);
    border-color: rgba(19, 139, 88, 0.15);
}

.bk-contact-card--whatsapp .bk-contact-card__action:hover {
    border-color: #138b58;
    background: #138b58;
    color: #ffffff;
}

/* تبلت */

@media (max-width: 1050px) {
    .bk-contact-channels__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bk-contact-card {
        min-height: 310px;
    }
}

/* موبایل */

@media (max-width: 600px) {
    .bk-contact-channels {
        width: calc(100% - 20px);
        padding-top: 38px;
    }

    .bk-contact-channels__header {
        margin-bottom: 26px;
    }

    .bk-contact-channels__header h2 {
        font-size: 23px;
    }

    .bk-contact-channels__header p {
        font-size: 13px;
        line-height: 1.9;
    }

    .bk-contact-channels__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bk-contact-card {
        min-height: auto;
        padding: 21px 18px 18px;
        border-radius: 17px;
    }

    .bk-contact-card > p {
        min-height: 0;
    }

    .bk-contact-card__value {
        font-size: 17px;
    }

    .bk-contact-card__value--email {
        font-size: 14px;
    }
}

/* =====================================================
   Behzad Kala - Contact Information Panel
===================================================== */

.bk-contact-info,
.bk-contact-info * {
    box-sizing: border-box;
}

.bk-contact-info {
    width: 100%;
    height: 100%;
    padding: 30px;
    direction: rtl;
    border: 1px solid #e5ecf6;
    border-radius: 23px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(23, 100, 220, 0.09),
            transparent 25%
        ),
        linear-gradient(145deg, #f9fbff, #f1f6ff);
    box-shadow: 0 15px 40px rgba(17, 45, 91, 0.07);
}

.bk-contact-info__header {
    margin-bottom: 25px;
}

.bk-contact-info__label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 11px;
    padding: 5px 13px;
    border: 1px solid rgba(23, 100, 220, 0.13);
    border-radius: 100px;
    background: rgba(23, 100, 220, 0.08);
    color: #1764dc;
    font-size: 12px;
    font-weight: 700;
}

.bk-contact-info__header h2 {
    margin: 0 0 9px;
    color: #0b2147;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.6;
}

.bk-contact-info__header > p {
    margin: 0;
    color: #6e7989;
    font-size: 13px;
    line-height: 2;
}

.bk-contact-info__items {
    display: grid;
    gap: 13px;
}

.bk-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
    border: 1px solid rgba(23, 100, 220, 0.09);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
}

.bk-contact-info__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: rgba(23, 100, 220, 0.1);
    color: #1764dc;
}

.bk-contact-info__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-info__item strong {
    display: block;
    margin-bottom: 3px;
    color: #14284a;
    font-size: 13px;
    font-weight: 800;
}

.bk-contact-info__item p,
.bk-contact-info__item a {
    display: block;
    margin: 0;
    color: #667285;
    font-size: 12px;
    line-height: 1.9;
    text-decoration: none;
}

.bk-contact-info__item a:hover {
    color: #1764dc;
}

.bk-contact-info__social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 19px;
    border-top: 1px solid rgba(23, 100, 220, 0.12);
}

.bk-contact-info__social > span {
    color: #14284a;
    font-size: 13px;
    font-weight: 800;
}

.bk-contact-info__social-links {
    display: flex;
    gap: 9px;
}

.bk-contact-info__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(23, 100, 220, 0.12);
    border-radius: 12px;
    background: #ffffff;
    color: #1764dc;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.bk-contact-info__social-links a:hover {
    transform: translateY(-2px);
    background: #1764dc;
    color: #ffffff;
}

.bk-contact-info__social-links svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-info__help {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 21px;
    padding: 17px;
    border: 1px solid rgba(23, 100, 220, 0.13);
    border-radius: 16px;
    background: #ffffff;
}

.bk-contact-info__help-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(23, 100, 220, 0.1);
    color: #1764dc;
}

.bk-contact-info__help-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-info__help strong {
    display: block;
    margin-bottom: 4px;
    color: #14284a;
    font-size: 13px;
    font-weight: 800;
}

.bk-contact-info__help p {
    margin: 0;
    color: #6c7788;
    font-size: 11px;
    line-height: 1.9;
}

.bk-contact-info__help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 11px;
}

.bk-contact-info__help-actions a {
    padding: 7px 11px;
    border-radius: 9px;
    background: #f2f6fd;
    color: #1764dc;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.bk-contact-info__help-actions a:hover {
    background: #1764dc;
    color: #ffffff;
}

@media (max-width: 767px) {
    .bk-contact-info {
        padding: 23px 16px;
        border-radius: 18px;
    }

    .bk-contact-info__header h2 {
        font-size: 23px;
    }

    .bk-contact-info__social {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   Behzad Kala — Contact Form 7
   Woodmart + Elementor Compatible
========================================================= */

/* =========================================================
   Reset
========================================================= */

.bk-contact-form,
.bk-contact-form *,
.bk-contact-form *::before,
.bk-contact-form *::after {
    box-sizing: border-box;
}

.bk-contact-form {
    --bk-primary: #1764dc;
    --bk-primary-dark: #0b4ebd;
    --bk-heading: #0b2147;
    --bk-text: #657286;
    --bk-muted: #8993a1;
    --bk-border: #dfe7f1;
    --bk-soft-border: #e8eef6;
    --bk-soft-bg: #f7faff;
    --bk-danger: #df2638;

    width: 100%;
    margin: 0;
    padding: 34px;
    direction: rtl;
    overflow: hidden;
    border: 1px solid var(--bk-soft-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 42, 84, 0.07);
    font-family: inherit;
    text-align: right;
}

.bk-contact-form p,
.bk-contact-form h2 {
    padding: 0;
}

.bk-contact-form br {
    line-height: 0;
}

/* =========================================================
   Header
========================================================= */

.bk-contact-form__head {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: start;
    gap: 17px;
    width: 100%;
    margin: 0 0 22px;
}

.bk-contact-form__head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(23, 100, 220, 0.09);
    border-radius: 19px;
    background: linear-gradient(
        145deg,
        rgba(23, 100, 220, 0.14),
        rgba(23, 100, 220, 0.035)
    );
    color: var(--bk-primary);
}

.bk-contact-form__head-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-form__head-content {
    min-width: 0;
    padding-top: 1px;
}

.bk-contact-form__eyebrow {
    display: block;
    margin: 0 0 5px;
    color: var(--bk-primary);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-contact-form__head h2 {
    margin: 0 0 8px;
    color: var(--bk-heading);
    font-size: clamp(25px, 3vw, 32px);
    font-weight: 850;
    line-height: 1.5;
    letter-spacing: -0.3px;
    text-align: right;
}

.bk-contact-form__head p {
    max-width: 680px;
    margin: 0;
    color: var(--bk-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    text-align: right;
}

/* =========================================================
   Required notice
========================================================= */

.bk-contact-form__required {
    width: 100%;
    margin: 0 0 25px;
    padding: 11px 14px;
    border-radius: 11px;
    background: #fafcff;
    color: #7d8795;
    font-size: 11px;
    line-height: 1.8;
}

.bk-contact-form__required span,
.bk-contact-field__head label > span,
.bk-contact-method__title > span {
    color: var(--bk-danger);
}

/* =========================================================
   Main form grid
========================================================= */

.bk-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 22px 24px;
    width: 100%;
}

.bk-contact-field {
    display: flex;
    flex-direction: column;
    align-self: start;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.bk-contact-field--full {
    grid-column: 1 / -1;
}

/* =========================================================
   Field heading
   Label and tag always remain on one line
========================================================= */

.bk-contact-form .bk-contact-field__head {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;

    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 30px;

    margin: 0 0 8px !important;
    padding: 0 !important;

    direction: rtl !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

.bk-contact-form .bk-contact-field__head > br {
    display: none !important;
}

.bk-contact-form .bk-contact-field__head > label {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--bk-heading);
    font-family: inherit;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.6;

    white-space: nowrap !important;
    overflow: visible !important;
}

.bk-contact-form .bk-contact-field__head > label > span {
    display: inline !important;
    width: auto !important;
    margin: 0 4px 0 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

/* Optional/help label */

.bk-contact-form .bk-contact-field__head > .bk-contact-field__tag {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 21px !important;

    margin: 0 !important;
    padding: 2px 8px !important;

    border: 1px solid rgba(23, 100, 220, 0.04);
    border-radius: 100px;
    background: #f1f5fb;

    color: #7c8795;
    font-family: inherit;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;

    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

/* جلوگیری از دخالت استایل لیبل‌های وودمارت */

.bk-contact-form label {
    float: none;
}

.bk-contact-form .bk-contact-field__head label::before,
.bk-contact-form .bk-contact-field__head label::after,
.bk-contact-form .bk-contact-field__tag::before,
.bk-contact-form .bk-contact-field__tag::after {
    display: none;
}

/* =========================================================
   Contact Form 7 wrappers
========================================================= */

.bk-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.bk-contact-form .wpcf7-form-control-wrap > br {
    display: none;
}

/* =========================================================
   Inputs
========================================================= */

.bk-contact-form input[type="text"],
.bk-contact-form input[type="tel"],
.bk-contact-form input[type="email"],
.bk-contact-form select,
.bk-contact-form textarea {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 54px;

    margin: 0;
    padding: 12px 16px;

    border: 1px solid var(--bk-border);
    border-radius: 13px;
    outline: none;

    background: #ffffff;
    color: #17253b;

    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;

    direction: rtl;
    text-align: right;

    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.bk-contact-form textarea {
    min-height: 175px;
    padding-top: 15px;
    resize: vertical;
}

.bk-contact-form select {
    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #778397 50%),
        linear-gradient(135deg, #778397 50%, transparent 50%);

    background-position:
        left 19px center,
        left 14px center;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
    padding-left: 42px;
}

.bk-contact-form input::placeholder,
.bk-contact-form textarea::placeholder {
    color: #99a3b0;
    opacity: 1;
}

.bk-contact-form input[type="text"]:hover,
.bk-contact-form input[type="tel"]:hover,
.bk-contact-form input[type="email"]:hover,
.bk-contact-form select:hover,
.bk-contact-form textarea:hover {
    border-color: #cbd7e6;
}

.bk-contact-form input[type="text"]:focus,
.bk-contact-form input[type="tel"]:focus,
.bk-contact-form input[type="email"]:focus,
.bk-contact-form select:focus,
.bk-contact-form textarea:focus {
    border-color: var(--bk-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 100, 220, 0.08);
}

/* ایمیل لاتین */

.bk-contact-form input[type="email"] {
    direction: ltr;
    text-align: right;
}

/* =========================================================
   Preferred contact method
========================================================= */

.bk-contact-method {
    width: 100%;
    margin: 24px 0 0;
    padding: 21px;

    border: 1px solid #e1e9f4;
    border-radius: 18px;

    background: linear-gradient(145deg, #f9fbff, #f5f9ff);
}

.bk-contact-method__title {
    margin: 0 0 5px;
    color: var(--bk-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-contact-method > p {
    margin: 0 0 15px;
    color: #768192;
    font-size: 11px;
    line-height: 1.8;
}

.bk-contact-method .wpcf7-form-control {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.bk-contact-method .wpcf7-list-item {
    display: block;
    margin: 0;
    padding: 0;
}

.bk-contact-method .wpcf7-list-item label {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 52px;

    margin: 0;
    padding: 10px 12px;

    border: 1px solid #dce5f0;
    border-radius: 12px;

    background: #ffffff;
    color: #34435a;

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-contact-method .wpcf7-list-item label:hover {
    border-color: rgba(23, 100, 220, 0.45);
    background: #f2f7ff;
}

.bk-contact-method input[type="radio"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0 0 0 8px;
    accent-color: var(--bk-primary);
    cursor: pointer;
}

.bk-contact-method input[type="radio"]:checked
+ .wpcf7-list-item-label {
    color: var(--bk-primary);
    font-weight: 750;
}

.bk-contact-method .wpcf7-list-item label:has(
    input[type="radio"]:checked
) {
    border-color: var(--bk-primary);
    background: rgba(23, 100, 220, 0.055);
    box-shadow: 0 0 0 3px rgba(23, 100, 220, 0.06);
}

/* =========================================================
   Attachment
========================================================= */

.bk-contact-field--attachment {
    width: 100%;
    margin-top: 24px;
}

.bk-contact-field--attachment .bk-contact-field__head {
    margin-bottom: 8px !important;
}

.bk-contact-form input[type="file"] {
    display: block;
    width: 100%;
    min-height: 58px;

    margin: 0;
    padding: 12px;

    border: 1px dashed #b9c9df;
    border-radius: 13px;

    background: #f9fbff;
    color: #697587;

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.bk-contact-form input[type="file"]:hover {
    border-color: var(--bk-primary);
    background: #f4f8ff;
}

.bk-contact-form input[type="file"]::file-selector-button {
    min-height: 36px;

    margin-left: 11px;
    padding: 8px 14px;

    border: 0;
    border-radius: 9px;

    background: var(--bk-primary);
    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.bk-contact-form input[type="file"]::file-selector-button:hover {
    background: var(--bk-primary-dark);
}

/* =========================================================
   Privacy notice
========================================================= */

.bk-contact-form__privacy {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    margin-top: 22px;
    padding: 16px 18px;

    border: 1px solid #dbe7f8;
    border-radius: 15px;

    background: #f4f8ff;
}

.bk-contact-form__privacy-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 11px;
    background: #ffffff;
    color: var(--bk-primary);

    box-shadow: 0 5px 13px rgba(20, 48, 90, 0.05);
}

.bk-contact-form__privacy-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-form__privacy p {
    margin: 0;
    color: #59667a;
    font-size: 12px;
    line-height: 1.9;
}

/* =========================================================
   Acceptance checkbox
========================================================= */

.bk-contact-form__consent {
    width: 100%;
    margin-top: 17px;
    padding: 15px 17px;

    border: 1px solid #e2e8f0;
    border-radius: 13px;

    background: #fcfcfd;
}

.bk-contact-form__consent .wpcf7-list-item {
    display: block;
    margin: 0;
    padding: 0;
}

.bk-contact-form__consent label {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin: 0;

    color: #5f6978;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.9;

    cursor: pointer;
}

.bk-contact-form__consent input[type="checkbox"] {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin: 3px 0 0;

    accent-color: var(--bk-primary);
    cursor: pointer;
}

/* =========================================================
   Submit button
========================================================= */

.bk-contact-form__submit {
    position: relative;
    width: 100%;
    margin-top: 24px;
}

.bk-contact-form input[type="submit"] {
    display: block;
    width: 100%;
    min-height: 56px;

    margin: 0;
    padding: 13px 24px;

    border: 0;
    border-radius: 13px;

    background: linear-gradient(
        135deg,
        var(--bk-primary),
        var(--bk-primary-dark)
    );

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;

    cursor: pointer;

    box-shadow: 0 11px 24px rgba(23, 100, 220, 0.23);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.bk-contact-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 31px rgba(23, 100, 220, 0.29);
}

.bk-contact-form input[type="submit"]:active {
    transform: translateY(0);
}

.bk-contact-form input[type="submit"]:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* =========================================================
   Contact Form 7 spinner
========================================================= */

.bk-contact-form .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

/* =========================================================
   Validation messages
========================================================= */

.bk-contact-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    color: #d7263d;
    font-size: 10px;
    line-height: 1.7;
}

.bk-contact-form .wpcf7-not-valid {
    border-color: #e45b6b !important;
    box-shadow: 0 0 0 3px rgba(228, 91, 107, 0.08) !important;
}

.bk-contact-main .wpcf7 form .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 13px 16px !important;

    border-width: 1px !important;
    border-radius: 12px;

    font-size: 12px;
    line-height: 1.9;
}

.bk-contact-main .wpcf7 form.sent .wpcf7-response-output {
    border-color: #35a269 !important;
    background: #effcf5;
    color: #27764d;
}

.bk-contact-main .wpcf7 form.invalid .wpcf7-response-output,
.bk-contact-main .wpcf7 form.unaccepted .wpcf7-response-output,
.bk-contact-main .wpcf7 form.failed .wpcf7-response-output,
.bk-contact-main .wpcf7 form.spam .wpcf7-response-output {
    border-color: #e0a32e !important;
    background: #fff9ec;
    color: #825c14;
}
/* =========================================================
   Contact section columns
========================================================= */

.bk-contact-main {
    display: flex;
    align-items: stretch;
    gap: 24px;

    width: calc(100% - 40px);
    max-width: 1240px;

    margin: 0 auto;
}

/*
 * هر دو ستون به‌صورت Flex تنظیم می‌شوند تا
 * ارتفاع ستون کوتاه‌تر با ستون بلندتر برابر شود.
 */

.bk-contact-main__form,
.bk-contact-main__info {
    display: flex;
    flex-direction: column;
    align-self: stretch;

    min-width: 0;
}

.bk-contact-main__form {
    flex: 1 1 60%;
}

.bk-contact-main__info {
    flex: 1 1 40%;
}

/* =========================================================
   Form column height chain
========================================================= */

.bk-contact-main__form > .elementor-widget-shortcode,
.bk-contact-main__form
> .elementor-widget-shortcode
> .elementor-widget-container,
.bk-contact-main__form .wpcf7 {
    width: 100%;
}

.bk-contact-main__form > .elementor-widget-shortcode {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.bk-contact-main__form
> .elementor-widget-shortcode
> .elementor-widget-container {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.bk-contact-main__form .wpcf7,
.bk-contact-main__form .wpcf7-form,
.bk-contact-main__form .bk-contact-form {
    flex: 1 1 auto;
}

/* =========================================================
   FIX — Stretch left HTML column
========================================================= */

/*
 * کانتینر سمت چپ فقط یک ابزارک HTML دارد.
 * این قسمت زنجیره ارتفاع را از کانتینر المنتور
 * تا محتوای داخل HTML ادامه می‌دهد.
 */

.bk-contact-main__info {
    height: auto;
}

/* سازگار با کانتینرهای معمولی و کانتینرهای Nested المنتور */

.bk-contact-main__info > .e-con-inner {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    width: 100%;
    min-height: 0;
}

.bk-contact-main__info > .elementor-widget-html,
.bk-contact-main__info .elementor-widget-html {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column;

    width: 100% !important;
    min-height: 0 !important;

    margin-bottom: 0 !important;
}

/* کانتینر داخلی ابزارک HTML */

.bk-contact-main__info
.elementor-widget-html
> .elementor-widget-container {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column;

    width: 100% !important;
    min-height: 0 !important;
}

/*
 * اولین عنصر اصلی داخل کد HTML سمت چپ
 * تا انتهای ارتفاع فرم کشیده می‌شود.
 */

.bk-contact-main__info
.elementor-widget-html
> .elementor-widget-container
> :first-child {
    flex: 1 1 auto;

    width: 100% !important;
    min-height: 100% !important;
    height: 100% !important;

    box-sizing: border-box;
}

/* جلوگیری از ایجاد فاصله اضافی توسط پاراگراف‌های خودکار */

.bk-contact-main__info
.elementor-widget-html
> .elementor-widget-container
> p:empty {
    display: none !important;
    margin: 0 !important;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .bk-contact-main {
        gap: 18px;
    }

    .bk-contact-form {
        padding: 28px 22px;
    }

    .bk-contact-method .wpcf7-form-control {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bk-contact-form .bk-contact-field__head {
        flex-wrap: nowrap !important;
    }

    .bk-contact-form
    .bk-contact-field__head
    > .bk-contact-field__tag {
        max-width: none !important;
        white-space: nowrap !important;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .bk-contact-main {
        flex-direction: column;

        width: calc(100% - 20px);
        gap: 18px;
    }

    .bk-contact-main__form,
    .bk-contact-main__info {
        flex: 0 0 auto;
        flex-basis: 100%;

        width: 100%;
        height: auto !important;
        min-height: 0 !important;
    }

    .bk-contact-main__form {
        order: 1;
    }

    .bk-contact-main__info {
        order: 2;
    }

    /*
     * در موبایل ارتفاع اجباری ستون اطلاعات حذف می‌شود
     * تا فضای خالی غیرضروری ایجاد نشود.
     */

    .bk-contact-main__info > .e-con-inner,
    .bk-contact-main__info > .elementor-widget-html,
    .bk-contact-main__info .elementor-widget-html,
    .bk-contact-main__info
    .elementor-widget-html
    > .elementor-widget-container {
        display: block !important;
        flex: none !important;

        height: auto !important;
        min-height: 0 !important;
    }

    .bk-contact-main__info
    .elementor-widget-html
    > .elementor-widget-container
    > :first-child {
        height: auto !important;
        min-height: 0 !important;
    }

    .bk-contact-form {
        padding: 23px 15px;
        border-radius: 18px;
    }

    .bk-contact-form__head {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;

        text-align: center;
    }

    .bk-contact-form__head-content {
        text-align: center;
    }

    .bk-contact-form__head h2,
    .bk-contact-form__head p {
        text-align: center;
    }

    .bk-contact-form__head h2 {
        font-size: 24px;
    }

    .bk-contact-form__required {
        text-align: center;
    }

    .bk-contact-form__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .bk-contact-field--full {
        grid-column: auto;
    }

    .bk-contact-method {
        padding: 17px 14px;
    }

    .bk-contact-method .wpcf7-form-control {
        grid-template-columns: 1fr;
    }

    .bk-contact-method .wpcf7-list-item label {
        justify-content: flex-start;
    }

    /* عناوین و برچسب‌ها در موبایل تک‌خطی هستند */

    .bk-contact-form .bk-contact-field__head {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;

        gap: 7px !important;
        min-height: 28px;

        white-space: nowrap !important;
    }

    .bk-contact-form .bk-contact-field__head > label {
        flex: 0 0 auto !important;

        font-size: 12px;
        white-space: nowrap !important;
    }

    .bk-contact-form
    .bk-contact-field__head
    > .bk-contact-field__tag {
        flex: 0 0 auto !important;

        width: auto !important;
        max-width: none !important;

        padding: 2px 7px !important;

        font-size: 9px;
        white-space: nowrap !important;

        overflow: visible !important;
        text-overflow: clip !important;
    }

    .bk-contact-form__privacy {
        align-items: flex-start;
        padding: 15px;
    }
}

/* =========================================================
   Very small screens
========================================================= */

@media (max-width: 420px) {
    .bk-contact-form {
        padding-right: 13px;
        padding-left: 13px;
    }

    .bk-contact-form__head-icon {
        width: 55px;
        height: 55px;

        border-radius: 17px;
    }

    .bk-contact-form__head h2 {
        font-size: 22px;
    }

    .bk-contact-form .bk-contact-field__head {
        gap: 5px !important;
        flex-wrap: nowrap !important;
    }

    .bk-contact-form .bk-contact-field__head > label {
        font-size: 11.5px;
    }

    .bk-contact-form
    .bk-contact-field__head
    > .bk-contact-field__tag {
        padding: 2px 6px !important;

        font-size: 8.5px;
        letter-spacing: -0.15px;
        white-space: nowrap !important;
    }

    .bk-contact-form input[type="text"],
    .bk-contact-form input[type="tel"],
    .bk-contact-form input[type="email"],
    .bk-contact-form select,
    .bk-contact-form textarea {
        font-size: 12px;
    }
}

/* =========================================================
   Extra-small screens
========================================================= */

@media (max-width: 350px) {
    .bk-contact-form .bk-contact-field__head {
        gap: 4px !important;
    }

    .bk-contact-form .bk-contact-field__head > label {
        font-size: 11px;
    }

    .bk-contact-form
    .bk-contact-field__head
    > .bk-contact-field__tag {
        padding: 2px 5px !important;
        font-size: 8px;
    }
}

/* =========================================================
   FIX — CF7 automatic P and BR tags
========================================================= */

.bk-contact-form .bk-contact-field__head {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;

    gap: 8px !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 30px !important;

    margin: 0 0 8px !important;
    padding: 0 !important;

    direction: rtl !important;
    text-align: right !important;
}

/* خنثی‌کردن تگ‌های خودکار Contact Form 7 */

.bk-contact-form .bk-contact-field__head p {
    display: contents !important;

    margin: 0 !important;
    padding: 0 !important;
}

.bk-contact-form .bk-contact-field__head br {
    display: none !important;
}

/* عنوان فیلد */

.bk-contact-form .bk-contact-field__head label {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--bk-heading) !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    line-height: 1.6 !important;

    white-space: nowrap !important;
    float: none !important;
}

/* برچسب اختیاری و توضیح سفارش */

.bk-contact-form
.bk-contact-field__head
.bk-contact-field__tag {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 21px !important;

    margin: 0 !important;
    padding: 3px 9px !important;

    border: 1px solid rgba(23, 100, 220, 0.05) !important;
    border-radius: 100px !important;
    background: #f1f5fb !important;

    color: #7c8795 !important;
    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;

    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    float: none !important;
}

/* جلوگیری از حاشیه‌های قالب وودمارت */

.bk-contact-form .bk-contact-field__head > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .bk-contact-form .bk-contact-field__head {
        flex-wrap: nowrap !important;
        gap: 6px !important;
    }

    .bk-contact-form .bk-contact-field__head label {
        font-size: 12px !important;
    }

    .bk-contact-form
    .bk-contact-field__head
    .bk-contact-field__tag {
        padding: 2px 7px !important;

        font-size: 9px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 380px) {
    .bk-contact-form .bk-contact-field__head {
        gap: 4px !important;
    }

    .bk-contact-form .bk-contact-field__head label {
        font-size: 11px !important;
    }

    .bk-contact-form
    .bk-contact-field__head
    .bk-contact-field__tag {
        padding: 2px 5px !important;
        font-size: 8px !important;
    }
}
/* ========================================
   Behzad Kala - Google Map
======================================== */

.behzad-map-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0;
}

.behzad-map-box {
    width: 100%;
    overflow: hidden;
    border: 5px solid #ffffff;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 14px 40px rgba(20, 63, 124, 0.10);
}

.behzad-map-box iframe {
    display: block;
    width: 100% !important;
    height: 430px;
    border: 0;
}

/* تبلت */

@media (max-width: 1024px) {

    .behzad-map-section {
        margin-top: 40px;
    }

    .behzad-map-box iframe {
        height: 380px;
    }
}

/* موبایل */

@media (max-width: 767px) {

    .behzad-map-section {
        margin-top: 32px;
    }

    .behzad-map-box {
        border-width: 4px;
        border-radius: 18px;
    }

    .behzad-map-box iframe {
        height: 310px;
    }
}
/* ========================================
   Behzad Kala - Map Heading
======================================== */

.behzad-map-content {
    width: 100%;
}

.behzad-map-heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: center;
}

.behzad-map-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 7px 17px;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    background-color: #edf4ff;
    color: #1764df;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.behzad-map-heading h2 {
    margin: 0;
    color: #0b2855;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
}

.behzad-map-line {
    display: block;
    width: 46px;
    height: 4px;
    margin: 12px auto 15px;
    border-radius: 20px;
    background-color: #216be5;
}

.behzad-map-heading p {
    margin: 0;
    color: #7a879a;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

/* تبلت */

@media (max-width: 1024px) {

    .behzad-map-heading {
        margin-bottom: 26px;
    }

    .behzad-map-heading h2 {
        font-size: 29px;
    }
}

/* موبایل */

@media (max-width: 767px) {

    .behzad-map-heading {
        margin-bottom: 22px;
        padding: 0 8px;
    }

    .behzad-map-label {
        margin-bottom: 11px;
        padding: 6px 14px;
        font-size: 12px;
    }

    .behzad-map-heading h2 {
        font-size: 23px;
        line-height: 1.7;
    }

    .behzad-map-line {
        width: 40px;
        height: 3px;
        margin: 10px auto 12px;
    }

    .behzad-map-heading p {
        font-size: 13px;
        line-height: 2;
    }
}

/* =========================================================
   Contact sidebar location banner
========================================================= */

/*
 * Wrapper اصلی کد HTML ستون چپ را به Flex ستونی تبدیل می‌کند
 * تا بنر بتواند در پایین ستون قرار بگیرد.
 */

.bk-contact-main__info
.elementor-widget-html
> .elementor-widget-container
> :first-child {
    display: flex !important;
    flex-direction: column !important;
}

/* بنر موقعیت فروشگاه */

.bk-contact-location-banner {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;

    width: 100%;
    margin-top: auto;
    padding: 22px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.13);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(32, 105, 229, 0.13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #edf4ff 100%
        );

    box-shadow: 0 12px 30px rgba(24, 70, 135, 0.08);
}

/* دایره تزئینی پس‌زمینه */

.bk-contact-location-banner::before {
    content: "";
    position: absolute;

    width: 130px;
    height: 130px;

    left: -55px;
    bottom: -65px;

    border: 22px solid rgba(31, 105, 225, 0.045);
    border-radius: 50%;

    pointer-events: none;
}

/* آیکن */

.bk-contact-location-banner__icon {
    position: relative;
    z-index: 1;

    display: flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 1px solid #d2e2ff;
    border-radius: 15px;

    background: #e6f0ff;
    color: #1765dc;
}

/* محتوای بنر */

.bk-contact-location-banner__content {
    position: relative;
    z-index: 1;

    flex: 1;
    min-width: 0;
}

.bk-contact-location-banner__label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 8px;
    padding: 4px 10px;

    border-radius: 100px;
    background: rgba(31, 105, 225, 0.09);

    color: #1765dc;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.6;
}

.bk-contact-location-banner h3 {
    margin: 0 0 7px;

    color: #0b2855;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-contact-location-banner p {
    margin: 0 0 15px;

    color: #728097;
    font-size: 12px;
    line-height: 1.9;
}

/* دکمه مشاهده نقشه */

.bk-contact-location-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 40px;
    padding: 8px 15px;

    border: 1px solid #cfe0ff;
    border-radius: 11px;

    background: #ffffff;
    color: #1765dc !important;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;

    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.bk-contact-location-banner__button:hover {
    border-color: #1765dc;
    background: #1765dc;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.bk-contact-location-banner__button span {
    font-size: 16px;
    line-height: 1;
}

/* توقف مناسب هنگام انتقال به نقشه */

#behzad-store-map {
    scroll-margin-top: 120px;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .bk-contact-location-banner {
        gap: 12px;
        padding: 18px;
    }

    .bk-contact-location-banner__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .bk-contact-location-banner h3 {
        font-size: 15px;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .bk-contact-location-banner {
        margin-top: 20px;
        padding: 18px;
        border-radius: 17px;
    }

    .bk-contact-location-banner__button {
        width: 100%;
    }

    #behzad-store-map {
        scroll-margin-top: 85px;
    }
}

/* =========================================================
   Fill empty space in contact sidebar
========================================================= */

.bk-contact-sidebar-fill {
    display: flex;
    flex: 1 1 280px;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    min-height: 280px;
    margin-top: 24px;
    padding: 28px 24px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.55);
}

/* عنوان بخش */

.bk-contact-sidebar-fill__head {
    margin-bottom: 20px;
    text-align: right;
}

.bk-contact-sidebar-fill__label {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 4px 11px;

    border-radius: 100px;
    background: #e5efff;

    color: #1765dc;
    font-size: 10px;
    font-weight: 700;
}

.bk-contact-sidebar-fill__head h3 {
    margin: 0 0 7px;

    color: #0b2855;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-contact-sidebar-fill__head p {
    margin: 0;

    color: #748198;
    font-size: 12px;
    line-height: 2;
}

/* آیتم‌ها */

.bk-contact-sidebar-fill__items {
    display: grid;
    gap: 11px;
}

.bk-contact-sidebar-fill__item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.08);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.88);
}

.bk-contact-sidebar-fill__icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;
    background: #e8f1ff;
    color: #1765dc;
}

.bk-contact-sidebar-fill__icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-contact-sidebar-fill__item > div {
    min-width: 0;
}

.bk-contact-sidebar-fill__item strong {
    display: block;
    margin-bottom: 3px;

    color: #0b2855;
    font-size: 13px;
    font-weight: 750;
}

.bk-contact-sidebar-fill__item span:not(.bk-contact-sidebar-fill__icon) {
    display: block;

    color: #7b8799;
    font-size: 10.5px;
    line-height: 1.7;
}

/*
 * بنر نقشه دیگر با margin-top:auto
 * فضای خالی جداگانه ایجاد نمی‌کند.
 */

.bk-contact-location-banner {
    flex: 0 0 auto;
    margin-top: 22px !important;
}

/* تبلت */

@media (max-width: 1024px) {
    .bk-contact-sidebar-fill {
        min-height: 240px;
        padding: 22px 18px;
    }

    .bk-contact-sidebar-fill__head h3 {
        font-size: 17px;
    }

    .bk-contact-sidebar-fill__item {
        padding: 11px;
    }
}

/* موبایل */

@media (max-width: 767px) {
    .bk-contact-sidebar-fill {
        flex: none;
        min-height: 0;
        margin-top: 20px;
        padding: 20px 16px;
        border-radius: 17px;
    }

    .bk-contact-location-banner {
        margin-top: 18px !important;
    }
}

/* =========================================================
   FIX — Why us and location banner spacing
========================================================= */

/*
 * جلوگیری از فشرده‌شدن بخش «چرا بهزاد کالا»
 * و بیرون‌زدن کارت آخر
 */

.bk-contact-sidebar-fill {
    flex: 0 0 auto !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin-top: 26px !important;
    margin-bottom: 0 !important;
    padding: 28px 24px !important;

    justify-content: flex-start !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.bk-contact-sidebar-fill__items {
    display: grid !important;
    gap: 14px !important;

    width: 100% !important;
    margin: 0 !important;
}

.bk-contact-sidebar-fill__item {
    position: relative;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* ایجاد فاصله مشخص بین دو بخش پایینی */

.bk-contact-location-banner {
    flex: 0 0 auto !important;

    width: 100% !important;
    height: auto !important;

    margin-top: 30px !important;
    margin-bottom: 0 !important;

    position: relative;
    z-index: 1;
    box-sizing: border-box !important;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .bk-contact-sidebar-fill {
        margin-top: 22px !important;
        padding: 23px 19px !important;
    }

    .bk-contact-location-banner {
        margin-top: 26px !important;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .bk-contact-sidebar-fill {
        margin-top: 20px !important;
        padding: 20px 16px !important;
    }

    .bk-contact-sidebar-fill__items {
        gap: 12px !important;
    }

    .bk-contact-location-banner {
        margin-top: 22px !important;
    }
}

/* =========================================================
   FINAL FIX — Equal-height contact columns
========================================================= */

/* کانتینر اصلی دو ستون */
.bk-contact-main {
    display: flex !important;
    align-items: stretch !important;
}

/* هر دو ستون */
.bk-contact-main__form,
.bk-contact-main__info {
    align-self: stretch !important;
    min-width: 0 !important;
}

/* =========================================================
   Right form column
========================================================= */

/*
 * خود ستون راست به کارت سفید تبدیل می‌شود.
 * بنابراین ارتفاع ظاهری آن دقیقاً برابر ستون چپ خواهد بود.
 */

.bk-contact-main__form {
    display: flex !important;
    flex-direction: column !important;

    height: auto !important;
    min-height: 0 !important;

    overflow: hidden !important;

    border-radius: 28px !important;
    background-color: #ffffff !important;

    box-shadow:
        0 14px 35px rgba(20, 55, 105, 0.08) !important;
}

/* پوشش ساختارهای مختلف کانتینر المنتور */

.bk-contact-main__form > .e-con-inner,
.bk-contact-main__form > .elementor-element,
.bk-contact-main__form .elementor-widget-shortcode {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
}

/* Wrapper داخلی ابزارک شورت‌کد */

.bk-contact-main__form
.elementor-widget-shortcode
> .elementor-widget-container {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
}

/* Wrapper افزونه Contact Form 7 */

.bk-contact-main__form .wpcf7 {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
}

/* خود فرم Contact Form 7 */

.bk-contact-main__form .wpcf7-form {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
}

/*
 * کارت داخلی فرم شفاف می‌شود؛
 * پس‌زمینه، گردی و سایه را ستون اصلی کنترل می‌کند.
 * Paddingهای داخلی فرم حذف نمی‌شوند.
 */

.bk-contact-main__form .bk-contact-form {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 100% !important;

    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    box-sizing: border-box !important;
}

/* جلوگیری از فاصله اضافه انتهای ابزارک */

.bk-contact-main__form
.elementor-widget-shortcode:last-child,
.bk-contact-main__form
.elementor-widget-container:last-child,
.bk-contact-main__form
.wpcf7:last-child,
.bk-contact-main__form
.wpcf7-form:last-child,
.bk-contact-main__form
.bk-contact-form:last-child {
    margin-bottom: 0 !important;
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-contact-main {
        align-items: stretch !important;
    }

    .bk-contact-main__form,
    .bk-contact-main__info {
        height: auto !important;
        min-height: 0 !important;
    }

    .bk-contact-main__form {
        border-radius: 18px !important;
    }

    .bk-contact-main__form > .e-con-inner,
    .bk-contact-main__form > .elementor-element,
    .bk-contact-main__form .elementor-widget-shortcode,
    .bk-contact-main__form
    .elementor-widget-shortcode
    > .elementor-widget-container,
    .bk-contact-main__form .wpcf7,
    .bk-contact-main__form .wpcf7-form,
    .bk-contact-main__form .bk-contact-form {
        flex: 0 0 auto !important;

        height: auto !important;
        min-height: 0 !important;
    }
}

/* =========================================================
   ABOUT PAGE — CONSOLIDATED STYLES
   Replace the previous About-page CSS with this file.
========================================================= */

:root {
    --bk-about-blue: #1765dc;
    --bk-about-blue-dark: #1259c6;
    --bk-about-navy: #0b2855;
    --bk-about-text: #67758c;
    --bk-about-muted: #8490a2;
    --bk-about-border: #e7edf6;
    --bk-about-border-blue: rgba(31, 105, 225, 0.10);
    --bk-about-soft: #edf4ff;
    --bk-about-bg: #f7f9fc;
}

/* =========================================================
   ELEMENTOR OUTER WRAPPERS
   Give the Elementor containers these classes:
   Hero:  bk-about-hero-wrap
   Intro: bk-about-intro-wrap
========================================================= */

.bk-about-hero-wrap,
.bk-about-intro-wrap {
    --widgets-spacing: 0px !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.bk-about-hero-wrap {
    position: relative;
    z-index: 2;
}

.bk-about-intro-wrap {
    position: relative;
    z-index: 1;
    background: #ffffff !important;
}

.bk-about-hero-wrap > .e-con-inner,
.bk-about-intro-wrap > .e-con-inner,
.bk-about-hero-wrap .elementor-widget-html,
.bk-about-intro-wrap .elementor-widget-html,
.bk-about-hero-wrap .elementor-widget-html > .elementor-widget-container,
.bk-about-intro-wrap .elementor-widget-html > .elementor-widget-container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

/* Fallback for current browsers, even if the wrapper class is omitted. */
.elementor-widget-html:has(.bk-about-hero-section),
.elementor-widget-html:has(.bk-about-intro-section),
.elementor-widget-html:has(.bk-about-hero-section) > .elementor-widget-container,
.elementor-widget-html:has(.bk-about-intro-section) > .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   SHARED RESET
========================================================= */

.bk-about-hero-section,
.bk-about-intro-section,
.bk-about-hero-section *,
.bk-about-intro-section * {
    box-sizing: border-box;
}

.bk-about-hero-section,
.bk-about-intro-section {
    display: block;
    width: 100%;
    margin: 0 !important;
}

/* =========================================================
   HERO SECTION
========================================================= */

.bk-about-hero-section {
    padding: 24px 22px 34px !important;
    background: #f7f9fc;
}

.bk-about-hero {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto !important;
}

.bk-about-hero__content {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, 0.92fr);

    align-items: center;
    gap: 54px;

    width: 100%;
    min-height: 0;
    margin: 0 !important;
    padding: 54px 64px;

    overflow: hidden;

    border: 1px solid #e8edf5;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 7% 13%,
            rgba(31, 105, 225, 0.075),
            transparent 30%
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(31, 105, 225, 0.055),
            transparent 31%
        ),
        #ffffff;

    box-shadow:
        0 18px 48px rgba(17, 52, 94, 0.065),
        0 3px 10px rgba(17, 52, 94, 0.025);
}

/* Hero text */

.bk-about-hero__text {
    position: relative;
    z-index: 4;

    width: 100%;
    min-width: 0;
}

.bk-about-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin: 0 0 18px;
    padding: 7px 14px;

    border: 1px solid var(--bk-about-border-blue);
    border-radius: 100px;

    background: var(--bk-about-soft);

    color: var(--bk-about-blue);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-hero__text h1 {
    max-width: 720px;
    margin: 0;

    color: var(--bk-about-navy);
    font-size: clamp(37px, 3.4vw, 49px);
    font-weight: 850;
    line-height: 1.5;
    letter-spacing: -0.9px;
}

.bk-about-hero__text h1 span {
    display: block;
    margin-top: 1px;

    color: var(--bk-about-blue);
}

.bk-about-hero__description {
    max-width: 720px;
    margin: 20px 0 0;

    color: var(--bk-about-text);
    font-size: 14.5px;
    line-height: 2.2;
}

/* Hero categories */

.bk-about-hero__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 680px;
    margin: 27px 0 0;
}

.bk-about-hero__category {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
    min-height: 68px;
    margin: 0;
    padding: 11px 13px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: rgba(248, 251, 255, 0.94);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-about-hero__category:hover {
    transform: translateY(-2px);

    border-color: rgba(31, 105, 225, 0.18);

    box-shadow:
        0 10px 24px rgba(23, 76, 150, 0.07);
}

.bk-about-hero__category-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;
    background: #e5efff;
    color: var(--bk-about-blue);
}

.bk-about-hero__category-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-hero__category > div {
    min-width: 0;
}

.bk-about-hero__category strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-about-hero__category > div > span {
    display: block;

    color: var(--bk-about-muted);
    font-size: 10px;
    line-height: 1.7;
}

/* Hero buttons */

.bk-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin: 28px 0 0;
}

.bk-about-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-about-hero__button:hover {
    transform: translateY(-2px);
}

.bk-about-hero__button--primary {
    border: 1px solid var(--bk-about-blue);

    background: var(--bk-about-blue);
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-about-hero__button--primary:hover {
    border-color: var(--bk-about-blue-dark);
    background: var(--bk-about-blue-dark);

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.28);
}

.bk-about-hero__button--secondary {
    border: 1px solid #d7e3f5;

    background: #ffffff;
    color: var(--bk-about-blue) !important;
}

.bk-about-hero__button--secondary:hover {
    border-color: #bdd2f1;
    background: #f4f8ff;
}

/* Hero visual */

.bk-about-hero__visual {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    width: 100%;
    min-width: 0;
    min-height: 490px;
    padding: 54px 15px 18px;
}

.bk-about-hero__visual-glow {
    position: absolute;
    inset: 42px 35px 58px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.19) 0%,
            rgba(31, 105, 225, 0.06) 46%,
            transparent 72%
        );

    filter: blur(9px);
}

/* Main card */

.bk-about-hero__main-card {
    position: relative;
    z-index: 2;

    width: min(100%, 370px);
    margin: 0;
    padding: 35px 30px 31px;

    border: 1px solid #e3eaf4;
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 247, 255, 0.96)
        );

    box-shadow:
        0 20px 45px rgba(26, 67, 126, 0.10),
        0 3px 10px rgba(26, 67, 126, 0.035);
}

.bk-about-hero__main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;
    margin: 0 0 23px;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            var(--bk-about-blue),
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 13px 29px rgba(23, 101, 220, 0.25);
}

.bk-about-hero__main-icon svg {
    width: 35px;
    height: 35px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-hero__card-label {
    display: block;
    margin-bottom: 5px;

    color: var(--bk-about-blue);
    font-size: 11px;
    font-weight: 750;
}

.bk-about-hero__brand-name {
    display: block;

    color: var(--bk-about-navy);
    font-size: 28px;
    font-weight: 850;
    line-height: 1.6;
}

.bk-about-hero__main-card > p {
    margin: 9px 0 0;

    color: #718096;
    font-size: 12px;
    line-height: 2;
}

.bk-about-hero__card-line {
    width: 100%;
    height: 1px;
    margin: 24px 0;

    background: #e1e9f4;
}

/* Location */

.bk-about-hero__location {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
}

.bk-about-hero__location-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;
    background: #e6efff;
    color: var(--bk-about-blue);
}

.bk-about-hero__location-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-hero__location > div {
    min-width: 0;
}

.bk-about-hero__location span {
    display: block;
    margin-bottom: 3px;

    color: var(--bk-about-muted);
    font-size: 10px;
}

.bk-about-hero__location strong {
    display: block;

    color: #16345f;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.9;
}

/* Floating cards */

.bk-about-hero__floating-card {
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 195px;
    max-width: 280px;
    padding: 12px 14px;

    border: 1px solid var(--bk-about-border-blue);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 14px 32px rgba(21, 61, 119, 0.12);

    backdrop-filter: blur(10px);
}

.bk-about-hero__floating-card--hours {
    position: absolute;
    top: 16px;
    left: 0;
}

.bk-about-hero__floating-card--support {
    position: relative;
    right: auto;
    bottom: auto;

    min-width: 245px;
    margin: 0;

    transform: none;
    justify-content: center;
}

.bk-about-hero__floating-icon {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;
    background: #e7f0ff;
    color: var(--bk-about-blue);
}

.bk-about-hero__floating-icon svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-hero__floating-card > div {
    min-width: 0;
}

.bk-about-hero__floating-card span:not(.bk-about-hero__floating-icon) {
    display: block;

    color: var(--bk-about-muted);
    font-size: 9.5px;
    line-height: 1.7;
}

.bk-about-hero__floating-card strong {
    display: block;
    margin-top: 2px;

    color: #17365f;
    font-size: 10.5px;
    font-weight: 750;
    line-height: 1.7;
}

/* =========================================================
   INTRO SECTION
========================================================= */

.bk-about-intro-section {
    padding: 0 22px 72px !important;
    background: #ffffff;
}

.bk-about-intro {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto !important;
}

.bk-about-intro__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);

    align-items: stretch;
    gap: 55px;

    width: 100%;
    margin: 0 !important;
    padding: 54px 58px;

    border: 1px solid #edf1f6;
    border-radius: 26px;
    background: #ffffff;

    box-shadow:
        0 14px 38px rgba(17, 52, 94, 0.045);
}

.bk-about-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    padding: 10px 6px;
}

.bk-about-intro__eyebrow {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;

    margin: 0 0 15px;
    padding: 6px 13px;

    border: 1px solid var(--bk-about-border-blue);
    border-radius: 100px;

    background: var(--bk-about-soft);

    color: var(--bk-about-blue);
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-intro__content h2 {
    margin: 0;

    color: var(--bk-about-navy);
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

.bk-about-intro__content h2 span {
    color: var(--bk-about-blue);
}

.bk-about-intro__lead {
    max-width: 730px;
    margin: 18px 0 0;

    color: #445875;
    font-size: 15px;
    font-weight: 600;
    line-height: 2.15;
}

.bk-about-intro__description {
    max-width: 760px;
    margin-top: 19px;
}

.bk-about-intro__description p {
    margin: 0 0 12px;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.2;
}

.bk-about-intro__description p:last-child {
    margin-bottom: 0;
}

/* Intro buttons */

.bk-about-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin: 28px 0 0;
}

.bk-about-intro__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 49px;
    padding: 0 21px;

    border-radius: 13px;

    font-size: 12.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-about-intro__button:hover {
    transform: translateY(-2px);
}

.bk-about-intro__button--primary {
    border: 1px solid var(--bk-about-blue);

    background: var(--bk-about-blue);
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.20);
}

.bk-about-intro__button--primary:hover {
    background: var(--bk-about-blue-dark);

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.27);
}

.bk-about-intro__button--secondary {
    border: 1px solid #d8e4f5;

    background: #ffffff;
    color: var(--bk-about-blue) !important;
}

.bk-about-intro__button--secondary:hover {
    border-color: #bdd1ef;
    background: #f5f8fd;
}

/* Intro panel */

.bk-about-intro__panel {
    position: relative;

    width: 100%;
    padding: 31px 29px;

    overflow: hidden;

    border: 1px solid #e7edf6;
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.065),
            transparent 35%
        ),
        #fbfdff;

    box-shadow:
        0 14px 34px rgba(24, 63, 119, 0.055);
}

.bk-about-intro__panel-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bk-about-intro__panel-icon {
    display: flex;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            var(--bk-about-blue),
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-about-intro__panel-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-intro__panel-head > div {
    min-width: 0;
}

.bk-about-intro__panel-head > div > span {
    display: block;
    margin-bottom: 3px;

    color: var(--bk-about-blue);
    font-size: 10px;
    font-weight: 750;
}

.bk-about-intro__panel-head h3 {
    margin: 0;

    color: var(--bk-about-navy);
    font-size: 20px;
    font-weight: 850;
    line-height: 1.6;
}

.bk-about-intro__panel-description {
    margin: 17px 0 0;

    color: #718096;
    font-size: 12.5px;
    line-height: 2;
}

/* Principles */

.bk-about-intro__principles {
    display: grid;
    gap: 11px;

    margin-top: 22px;
}

.bk-about-intro__principle {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    width: 100%;
    padding: 14px 15px;

    border: 1px solid rgba(31, 105, 225, 0.08);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.88);
}

.bk-about-intro__principle-number {
    display: flex;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border-radius: 11px;

    background: #e7f0ff;
    color: var(--bk-about-blue);

    font-size: 10px;
    font-weight: 850;
}

.bk-about-intro__principle > div {
    min-width: 0;
}

.bk-about-intro__principle strong {
    display: block;
    margin-bottom: 3px;

    color: #17365f;
    font-size: 12.5px;
    font-weight: 800;
}

.bk-about-intro__principle p {
    margin: 0;

    color: #7b8798;
    font-size: 10.5px;
    line-height: 1.85;
}

/* Intro panel footer */

.bk-about-intro__panel-footer {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 18px;
    padding: 14px 15px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: var(--bk-about-soft);
}

.bk-about-intro__panel-footer-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: var(--bk-about-blue);
}

.bk-about-intro__panel-footer-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-intro__panel-footer > div {
    min-width: 0;
}

.bk-about-intro__panel-footer span {
    display: block;
    margin-bottom: 2px;

    color: #6e7f98;
    font-size: 9.5px;
}

.bk-about-intro__panel-footer strong {
    display: block;

    color: #15345f;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .bk-about-hero__content {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.85fr);

        gap: 38px;
        padding: 48px 40px;
    }

    .bk-about-hero__text h1 {
        font-size: 40px;
    }

    .bk-about-hero__categories {
        max-width: 100%;
    }

    .bk-about-intro__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.9fr);

        gap: 34px;
    }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .bk-about-hero-section {
        padding: 20px 16px 16px !important;
    }

    .bk-about-hero__content {
        display: flex;
        flex-direction: column;
        gap: 38px;

        min-height: 0;
        padding: 42px 34px;

        border-radius: 27px;
    }

    .bk-about-hero__text,
    .bk-about-hero__visual {
        width: 100%;
    }

    .bk-about-hero__text h1,
    .bk-about-hero__description,
    .bk-about-hero__categories {
        max-width: 100%;
    }

    .bk-about-hero__visual {
        max-width: 570px;
        min-height: 0;
        margin: 0 auto;
        padding: 52px 0 0;
    }

    .bk-about-hero__floating-card--support {
        position: relative;
        min-width: 245px;
    }

    .bk-about-intro-section {
        padding: 0 18px 60px !important;
    }

    .bk-about-intro__inner {
        padding: 42px 34px;
        border-radius: 24px;
    }

    .bk-about-intro__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bk-about-intro__content,
    .bk-about-intro__panel {
        width: 100%;
    }

    .bk-about-intro__content {
        padding: 0;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .bk-about-hero-section {
        padding: 12px 11px 14px !important;
    }

    .bk-about-hero__content {
        gap: 34px;
        padding: 32px 18px 34px;
        border-radius: 22px;
    }

    .bk-about-hero__text {
        text-align: center;
    }

    .bk-about-hero__eyebrow {
        margin-bottom: 15px;
    }

    .bk-about-hero__text h1 {
        font-size: 29px;
        line-height: 1.65;
        letter-spacing: -0.5px;
    }

    .bk-about-hero__description {
        margin-top: 16px;
        font-size: 13px;
        line-height: 2.1;
    }

    .bk-about-hero__categories {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 23px;
    }

    .bk-about-hero__category {
        min-height: 61px;
        text-align: right;
    }

    .bk-about-hero__actions {
        justify-content: center;
        margin-top: 24px;
    }

    .bk-about-hero__button {
        flex: 1 1 100%;
        width: 100%;
        min-height: 49px;
    }

    .bk-about-hero__visual {
        gap: 12px;
        min-height: 0;
        padding: 0;
    }

    .bk-about-hero__visual-glow {
        inset: 15px 10px 50px;
    }

    .bk-about-hero__main-card {
        width: 100%;
        padding: 28px 20px 25px;
        text-align: right;
    }

    .bk-about-hero__floating-card {
        position: relative !important;
        inset: auto !important;
        transform: none !important;

        width: 100%;
        min-width: 0;
        max-width: none;

        padding: 11px 13px;
    }

    .bk-about-hero__floating-card--hours {
        order: 2;
    }

    .bk-about-hero__floating-card--support {
        order: 3;
    }

    .bk-about-intro-section {
        padding: 0 12px 48px !important;
    }

    .bk-about-intro__inner {
        padding: 34px 18px;
        border-radius: 21px;
    }

    .bk-about-intro__content {
        text-align: center;
    }

    .bk-about-intro__eyebrow {
        align-self: center;
    }

    .bk-about-intro__content h2 {
        font-size: 28px;
        line-height: 1.65;
    }

    .bk-about-intro__lead {
        font-size: 13.5px;
        line-height: 2.1;
    }

    .bk-about-intro__description p {
        font-size: 12.5px;
        line-height: 2.1;
    }

    .bk-about-intro__actions {
        justify-content: center;
    }

    .bk-about-intro__button {
        flex: 1 1 100%;
        width: 100%;
    }

    .bk-about-intro__panel {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .bk-about-intro__panel-head,
    .bk-about-intro__panel-description,
    .bk-about-intro__principle,
    .bk-about-intro__panel-footer {
        text-align: right;
    }

    .bk-about-intro__panel-head h3 {
        font-size: 17px;
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .bk-about-hero__content {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-about-hero__text h1 {
        font-size: 26px;
    }

    .bk-about-hero__main-card {
        padding: 26px 17px;
    }

    .bk-about-hero__floating-card strong {
        font-size: 9.5px;
    }
}


/* =========================================================
   ACCESSIBILITY & FINAL POLISH
========================================================= */

.bk-about-hero-section a:focus-visible,
.bk-about-intro-section a:focus-visible {
    outline: 3px solid rgba(23, 101, 220, 0.28);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .bk-about-hero-section *,
    .bk-about-intro-section * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   WHY CHOOSE BEHZAD KALA
========================================================= */

.bk-about-why-wrap {
    --widgets-spacing: 0px !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
    background: #f7f9fc !important;
}

.bk-about-why-wrap > .e-con-inner,
.bk-about-why-wrap .elementor-widget-html,
.bk-about-why-wrap .elementor-widget-html > .elementor-widget-container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.elementor-widget-html:has(.bk-about-why-section),
.elementor-widget-html:has(.bk-about-why-section) > .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

.bk-about-why-section,
.bk-about-why-section * {
    box-sizing: border-box;
}

.bk-about-why-section {
    display: block;
    width: 100%;

    margin: 0 !important;
    padding: 72px 22px;

    background: #f7f9fc;
}

.bk-about-why {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto !important;
    padding: 58px 60px;

    overflow: hidden;

    border: 1px solid #e8edf5;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 0 100%,
            rgba(31, 105, 225, 0.045),
            transparent 29%
        ),
        #ffffff;

    box-shadow:
        0 16px 42px rgba(17, 52, 94, 0.05);
}

.bk-about-why__header {
    width: 100%;
    max-width: 760px;

    margin: 0 auto 38px;
    text-align: center;
}

.bk-about-why__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 15px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.1);
    border-radius: 100px;

    background: #edf4ff;

    color: #1765dc;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-why__header h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

.bk-about-why__header h2 span {
    color: #1765dc;
}

.bk-about-why__header p {
    max-width: 680px;

    margin: 16px auto 0;

    color: #6d7b90;
    font-size: 14px;
    line-height: 2.15;
}

.bk-about-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    width: 100%;
}

.bk-about-why__card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    min-width: 0;
    min-height: 176px;

    padding: 23px 21px;

    overflow: hidden;

    border: 1px solid #e8edf5;
    border-radius: 19px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 8px 24px rgba(20, 58, 110, 0.035);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.bk-about-why__card::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 4px;
    height: 0;

    border-radius: 0 19px 19px 0;

    background: #1765dc;

    transition: height 0.24s ease;
}

.bk-about-why__card:hover {
    transform: translateY(-4px);

    border-color: rgba(31, 105, 225, 0.16);
    background: #ffffff;

    box-shadow:
        0 16px 34px rgba(20, 58, 110, 0.075);
}

.bk-about-why__card:hover::before {
    height: 100%;
}

.bk-about-why__icon {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 10px 24px rgba(23, 101, 220, 0.2);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.bk-about-why__card:hover .bk-about-why__icon {
    transform: scale(1.05) rotate(-2deg);

    box-shadow:
        0 13px 28px rgba(23, 101, 220, 0.26);
}

.bk-about-why__icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-why__content {
    min-width: 0;
}

.bk-about-why__content h3 {
    margin: 1px 0 7px;

    color: #14345f;
    font-size: 15px;
    font-weight: 820;
    line-height: 1.8;
}

.bk-about-why__content p {
    margin: 0;

    color: #788598;
    font-size: 12px;
    line-height: 2;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {
    .bk-about-why-section {
        padding: 58px 18px;
    }

    .bk-about-why {
        padding: 48px 38px;
    }

    .bk-about-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .bk-about-why-section {
        padding: 44px 12px;
    }

    .bk-about-why {
        padding: 38px 18px;

        border-radius: 22px;
    }

    .bk-about-why__header {
        margin-bottom: 28px;
    }

    .bk-about-why__header h2 {
        font-size: 28px;
        line-height: 1.65;
    }

    .bk-about-why__header p {
        font-size: 12.5px;
        line-height: 2.1;
    }

    .bk-about-why__grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .bk-about-why__card {
        min-height: 0;
        padding: 19px 16px;
    }

    .bk-about-why__content h3 {
        font-size: 14px;
    }

    .bk-about-why__content p {
        font-size: 11.5px;
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .bk-about-why {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-about-why__card {
        gap: 12px;
    }

    .bk-about-why__icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .bk-about-why__icon svg {
        width: 23px;
        height: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bk-about-why-section *,
    .bk-about-why-section *::before,
    .bk-about-why-section *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   ABOUT SERVICES
========================================================= */

.bk-about-services-wrap {
    --widgets-spacing: 0px !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
}

.bk-about-services-wrap > .e-con-inner,
.bk-about-services-wrap .elementor-widget-html,
.bk-about-services-wrap .elementor-widget-html > .elementor-widget-container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.elementor-widget-html:has(.bk-about-services-section),
.elementor-widget-html:has(.bk-about-services-section) > .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

.bk-about-services-section,
.bk-about-services-section *,
.bk-about-services-section *::before,
.bk-about-services-section *::after {
    box-sizing: border-box;
}

.bk-about-services-section {
    width: 100%;
    margin: 0 !important;
    padding: 72px 22px;

    background: #ffffff;
}

.bk-about-services {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto !important;
}

.bk-about-services__header {
    max-width: 760px;
    margin: 0 auto 40px;

    text-align: center;
}

.bk-about-services__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 15px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.1);
    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-services__header h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

.bk-about-services__header h2 span {
    color: #1765dc;
}

.bk-about-services__header p {
    max-width: 700px;
    margin: 17px auto 0;

    color: #6f7d91;
    font-size: 14px;
    line-height: 2.15;
}

.bk-about-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    width: 100%;
}

.bk-about-services__card {
    position: relative;

    min-width: 0;
    min-height: 350px;
    padding: 28px 27px 25px;

    overflow: hidden;

    border: 1px solid #e7edf5;
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.07),
            transparent 35%
        ),
        #fbfdff;

    box-shadow:
        0 12px 34px rgba(17, 52, 94, 0.045);

    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        background-color 0.24s ease;
}

.bk-about-services__card::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #1765dc,
            transparent
        );

    opacity: 0;
    transform: scaleX(0.25);

    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.bk-about-services__card:hover {
    transform: translateY(-5px);

    border-color: rgba(31, 105, 225, 0.18);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.1),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 20px 44px rgba(17, 52, 94, 0.085);
}

.bk-about-services__card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.bk-about-services__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.bk-about-services__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;
    flex: 0 0 64px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.22);

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.bk-about-services__card:hover .bk-about-services__icon {
    transform: scale(1.05) rotate(-2deg);

    box-shadow:
        0 15px 31px rgba(23, 101, 220, 0.29);
}

.bk-about-services__icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-services__number {
    color: rgba(23, 101, 220, 0.12);

    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.bk-about-services__content h3 {
    margin: 0 0 10px;

    color: #12345f;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-about-services__content > p {
    margin: 0;

    color: #738196;
    font-size: 13px;
    line-height: 2.05;
}

.bk-about-services__content ul {
    display: grid;
    gap: 8px;

    margin: 20px 0 0;
    padding: 0;

    list-style: none;
}

.bk-about-services__content li {
    position: relative;

    margin: 0;
    padding-right: 21px;

    color: #5e6f86;
    font-size: 12px;
    line-height: 1.9;
}

.bk-about-services__content li::before {
    content: "";

    position: absolute;
    top: 10px;
    right: 2px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1765dc;

    box-shadow:
        0 0 0 4px rgba(23, 101, 220, 0.09);
}

.bk-about-services__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 23px;

    color: #1765dc !important;

    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.7;
    text-decoration: none !important;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.bk-about-services__link:hover {
    gap: 12px;
    color: #1259c6 !important;
}

.bk-about-services__link svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {
    .bk-about-services-section {
        padding: 58px 18px;
    }

    .bk-about-services__card {
        min-height: 365px;
        padding: 25px 22px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .bk-about-services-section {
        padding: 46px 12px;
    }

    .bk-about-services__header {
        margin-bottom: 29px;
    }

    .bk-about-services__header h2 {
        font-size: 28px;
        line-height: 1.65;
    }

    .bk-about-services__header p {
        font-size: 12.5px;
        line-height: 2.1;
    }

    .bk-about-services__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bk-about-services__card {
        min-height: 0;
        padding: 23px 18px;

        border-radius: 21px;
    }

    .bk-about-services__icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;

        border-radius: 17px;
    }

    .bk-about-services__icon svg {
        width: 27px;
        height: 27px;
    }

    .bk-about-services__number {
        font-size: 36px;
    }

    .bk-about-services__content h3 {
        font-size: 17px;
    }

    .bk-about-services__content > p {
        font-size: 12px;
    }

    .bk-about-services__content li {
        font-size: 11.5px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .bk-about-services-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .bk-about-services__card {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bk-about-services-section *,
    .bk-about-services-section *::before,
    .bk-about-services-section *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   ABOUT PURCHASE PROCESS
========================================================= */

.bk-about-process-wrap {
    --widgets-spacing: 0px !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
    background: #f7f9fc !important;
}

.bk-about-process-wrap > .e-con-inner,
.bk-about-process-wrap .elementor-widget-html,
.bk-about-process-wrap .elementor-widget-html > .elementor-widget-container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.elementor-widget-html:has(.bk-about-process-section),
.elementor-widget-html:has(.bk-about-process-section)
> .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

.bk-about-process-section,
.bk-about-process-section *,
.bk-about-process-section *::before,
.bk-about-process-section *::after {
    box-sizing: border-box;
}

.bk-about-process-section {
    width: 100%;
    margin: 0 !important;
    padding: 72px 22px;

    background: #f7f9fc;
}

.bk-about-process {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto !important;
    padding: 58px 56px;

    overflow: hidden;

    border: 1px solid #e7edf5;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 0 100%,
            rgba(31, 105, 225, 0.045),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 16px 42px rgba(17, 52, 94, 0.05);
}

.bk-about-process__header {
    width: 100%;
    max-width: 760px;

    margin: 0 auto 46px;

    text-align: center;
}

.bk-about-process__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 15px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.1);
    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-process__header h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

.bk-about-process__header h2 span {
    color: #1765dc;
}

.bk-about-process__header p {
    max-width: 690px;

    margin: 17px auto 0;

    color: #6f7d91;
    font-size: 14px;
    line-height: 2.15;
}

/* Steps */

.bk-about-process__steps {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        70px
        minmax(0, 1fr)
        70px
        minmax(0, 1fr)
        70px
        minmax(0, 1fr);

    align-items: center;

    width: 100%;
}

.bk-about-process__step {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;
    min-height: 270px;

    padding: 27px 20px 24px;

    text-align: center;

    border: 1px solid #e7edf5;
    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdff 100%
        );

    box-shadow:
        0 10px 30px rgba(17, 52, 94, 0.04);

    transition:
        transform 0.23s ease,
        border-color 0.23s ease,
        box-shadow 0.23s ease;
}

.bk-about-process__step:hover {
    transform: translateY(-5px);

    border-color: rgba(31, 105, 225, 0.18);

    box-shadow:
        0 18px 38px rgba(17, 52, 94, 0.075);
}

.bk-about-process__number {
    position: absolute;
    top: 15px;
    left: 17px;

    color: rgba(23, 101, 220, 0.14);

    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.bk-about-process__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;
    flex: 0 0 68px;

    margin: 7px 0 22px;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 13px 28px rgba(23, 101, 220, 0.22);

    transition:
        transform 0.23s ease,
        box-shadow 0.23s ease;
}

.bk-about-process__step:hover .bk-about-process__icon {
    transform: scale(1.05) rotate(-2deg);

    box-shadow:
        0 16px 33px rgba(23, 101, 220, 0.28);
}

.bk-about-process__icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-process__content h3 {
    margin: 0 0 9px;

    color: #13345f;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-about-process__content p {
    margin: 0;

    color: #748196;
    font-size: 11.5px;
    line-height: 2;
}

/* Connectors */

.bk-about-process__connector {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    color: rgba(23, 101, 220, 0.28);
}

.bk-about-process__connector svg {
    width: 100%;
    height: 25px;

    overflow: visible;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-process__connector path:first-child {
    stroke-dasharray: 5 5;
}

/* Footer */

.bk-about-process__footer {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;

    margin-top: 32px;
    padding: 18px 20px;

    border: 1px solid rgba(31, 105, 225, 0.1);
    border-radius: 18px;

    background: #edf4ff;
}

.bk-about-process__footer-icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    background: #ffffff;
    color: #1765dc;

    box-shadow:
        0 7px 18px rgba(20, 58, 110, 0.06);
}

.bk-about-process__footer-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-process__footer > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.bk-about-process__footer strong {
    display: block;

    margin-bottom: 3px;

    color: #14345f;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-about-process__footer span {
    display: block;

    color: #6f7f95;
    font-size: 11px;
    line-height: 1.8;
}

.bk-about-process__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;
    padding: 0 19px;

    border: 1px solid #1765dc;
    border-radius: 13px;

    background: #1765dc;
    color: #ffffff !important;

    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.2);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-about-process__button:hover {
    transform: translateY(-2px);

    background: #1259c6;

    box-shadow:
        0 13px 28px rgba(23, 101, 220, 0.27);
}

.bk-about-process__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {
    .bk-about-process {
        padding: 50px 38px;
    }

    .bk-about-process__steps {
        grid-template-columns:
            minmax(0, 1fr)
            45px
            minmax(0, 1fr)
            45px
            minmax(0, 1fr)
            45px
            minmax(0, 1fr);
    }

    .bk-about-process__step {
        min-height: 285px;
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {
    .bk-about-process-section {
        padding: 58px 18px;
    }

    .bk-about-process__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

    .bk-about-process__connector {
        display: none;
    }

    .bk-about-process__step {
        min-height: 255px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .bk-about-process-section {
        padding: 46px 12px;
    }

    .bk-about-process {
        padding: 38px 18px;

        border-radius: 22px;
    }

    .bk-about-process__header {
        margin-bottom: 29px;
    }

    .bk-about-process__header h2 {
        font-size: 28px;
        line-height: 1.65;
    }

    .bk-about-process__header p {
        font-size: 12.5px;
        line-height: 2.1;
    }

    .bk-about-process__steps {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .bk-about-process__step {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: center;
        gap: 15px;

        min-height: 0;

        padding: 19px 17px;

        text-align: right;
    }

    .bk-about-process__number {
        top: 11px;
        left: 13px;

        font-size: 22px;
    }

    .bk-about-process__icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;

        margin: 0;

        border-radius: 17px;
    }

    .bk-about-process__icon svg {
        width: 27px;
        height: 27px;
    }

    .bk-about-process__content h3 {
        margin-bottom: 4px;

        font-size: 14px;
    }

    .bk-about-process__content p {
        padding-left: 22px;

        font-size: 11px;
    }

    .bk-about-process__footer {
        align-items: flex-start;
        flex-wrap: wrap;

        padding: 16px;
    }

    .bk-about-process__footer > div:nth-child(2) {
        width: calc(100% - 62px);
    }

    .bk-about-process__button {
        width: 100%;
        margin-top: 3px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .bk-about-process {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-about-process__step {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 12px;

        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-about-process__icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .bk-about-process__icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bk-about-process-section *,
    .bk-about-process-section *::before,
    .bk-about-process-section *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   ABOUT REPAIR SERVICES
========================================================= */

.bk-about-repair-wrap {
    --widgets-spacing: 0px !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
}

.bk-about-repair-wrap > .e-con-inner,
.bk-about-repair-wrap .elementor-widget-html,
.bk-about-repair-wrap .elementor-widget-html > .elementor-widget-container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.elementor-widget-html:has(.bk-about-repair-section),
.elementor-widget-html:has(.bk-about-repair-section)
> .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

.bk-about-repair-section,
.bk-about-repair-section *,
.bk-about-repair-section *::before,
.bk-about-repair-section *::after {
    box-sizing: border-box;
}

.bk-about-repair-section {
    width: 100%;
    margin: 0 !important;
    padding: 72px 22px;

    background: #ffffff;
}

.bk-about-repair {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto !important;
    padding: 58px 60px;

    overflow: hidden;

    border: 1px solid #e7edf5;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.075),
            transparent 30%
        ),
        radial-gradient(
            circle at 0 100%,
            rgba(31, 105, 225, 0.04),
            transparent 31%
        ),
        #fbfdff;

    box-shadow:
        0 16px 42px rgba(17, 52, 94, 0.05);
}

.bk-about-repair__content {
    display: grid;
    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(0, 1.14fr);

    align-items: center;
    gap: 55px;
}

.bk-about-repair__text {
    min-width: 0;
}

.bk-about-repair__eyebrow {
    display: inline-flex;
    align-items: center;

    margin: 0 0 15px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.1);
    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-repair__text h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

.bk-about-repair__text h2 span {
    color: #1765dc;
}

.bk-about-repair__lead {
    margin: 18px 0 0;

    color: #445875;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 2.15;
}

.bk-about-repair__description {
    margin: 14px 0 0;

    color: #748196;
    font-size: 13px;
    line-height: 2.15;
}

.bk-about-repair__features {
    display: grid;
    gap: 11px;

    margin-top: 24px;
}

.bk-about-repair__feature {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 14px;

    border: 1px solid #e7edf5;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.88);
}

.bk-about-repair__feature-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-about-repair__feature-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-repair__feature > div:last-child {
    min-width: 0;
}

.bk-about-repair__feature strong {
    display: block;

    margin-bottom: 2px;

    color: #15345f;
    font-size: 12px;
    font-weight: 820;
    line-height: 1.8;
}

.bk-about-repair__feature span {
    display: block;

    color: #7a8799;
    font-size: 10.5px;
    line-height: 1.8;
}

.bk-about-repair__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 27px;
}

.bk-about-repair__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 49px;
    padding: 0 21px;

    border-radius: 13px;

    font-size: 12.5px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-about-repair__button:hover {
    transform: translateY(-2px);
}

.bk-about-repair__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.21);
}

.bk-about-repair__button--primary:hover {
    background: #1259c6;

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.27);
}

.bk-about-repair__button--secondary {
    border: 1px solid #d7e3f4;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-about-repair__button--secondary:hover {
    border-color: #bdd1ef;
    background: #f4f8ff;
}

.bk-about-repair__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Repair cards */

.bk-about-repair__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;

    min-width: 0;
}

.bk-about-repair__service {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    min-width: 0;
    min-height: 135px;

    padding: 19px 17px;

    border: 1px solid #e7edf5;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 8px 24px rgba(17, 52, 94, 0.035);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.bk-about-repair__service:hover {
    transform: translateY(-4px);

    border-color: rgba(31, 105, 225, 0.17);

    box-shadow:
        0 15px 32px rgba(17, 52, 94, 0.07);
}

.bk-about-repair__service-icon {
    display: flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 10px 22px rgba(23, 101, 220, 0.19);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.bk-about-repair__service:hover .bk-about-repair__service-icon {
    transform: scale(1.05) rotate(-2deg);

    box-shadow:
        0 13px 27px rgba(23, 101, 220, 0.26);
}

.bk-about-repair__service-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-repair__service > div:last-child {
    min-width: 0;
}

.bk-about-repair__service h3 {
    margin: 1px 0 6px;

    color: #14345f;
    font-size: 13px;
    font-weight: 830;
    line-height: 1.8;
}

.bk-about-repair__service p {
    margin: 0;

    color: #788598;
    font-size: 10.8px;
    line-height: 1.95;
}

/* Notice */

.bk-about-repair__notice {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 29px;
    padding: 15px 17px;

    border: 1px solid rgba(31, 105, 225, 0.1);
    border-radius: 16px;

    background: #edf4ff;
}

.bk-about-repair__notice-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-about-repair__notice-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-repair__notice p {
    margin: 0;

    color: #61738c;
    font-size: 11.5px;
    line-height: 1.9;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {
    .bk-about-repair {
        padding: 50px 38px;
    }

    .bk-about-repair__content {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .bk-about-repair-section {
        padding: 46px 12px;
    }

    .bk-about-repair {
        padding: 38px 18px;

        border-radius: 22px;
    }

    .bk-about-repair__text {
        text-align: center;
    }

    .bk-about-repair__text h2 {
        font-size: 28px;
        line-height: 1.65;
    }

    .bk-about-repair__lead {
        font-size: 13px;
        line-height: 2.1;
    }

    .bk-about-repair__description {
        font-size: 12px;
        line-height: 2.1;
    }

    .bk-about-repair__features {
        text-align: right;
    }

    .bk-about-repair__actions {
        justify-content: center;
    }

    .bk-about-repair__button {
        flex: 1 1 100%;
        width: 100%;
    }

    .bk-about-repair__services {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bk-about-repair__service {
        min-height: 0;
        padding: 17px 15px;
    }

    .bk-about-repair__notice {
        align-items: flex-start;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .bk-about-repair {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-about-repair__service-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .bk-about-repair__service-icon svg {
        width: 23px;
        height: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bk-about-repair-section *,
    .bk-about-repair-section *::before,
    .bk-about-repair-section *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   ABOUT FINAL CTA
========================================================= */

.bk-about-cta-wrap {
    --widgets-spacing: 0px !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
}

.bk-about-cta-wrap > .e-con-inner,
.bk-about-cta-wrap .elementor-widget-html,
.bk-about-cta-wrap .elementor-widget-html >
.elementor-widget-container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.elementor-widget-html:has(.bk-about-cta-section),
.elementor-widget-html:has(.bk-about-cta-section) >
.elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

.bk-about-cta-section,
.bk-about-cta-section *,
.bk-about-cta-section *::before,
.bk-about-cta-section *::after {
    box-sizing: border-box;
}

.bk-about-cta-section {
    display: block;
    width: 100%;

    margin: 0 !important;
    padding: 20px 22px 82px;

    background: #ffffff;
}

.bk-about-cta {
    position: relative;

    width: 100%;
    max-width: 1460px;

    margin: 0 auto !important;
    padding: 56px 58px 0;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(53, 130, 235, 0.24),
            transparent 31%
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(23, 101, 220, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #0b2855 0%,
            #0c326c 48%,
            #135ac0 100%
        );

    box-shadow:
        0 24px 58px rgba(11, 40, 85, 0.16);
}

.bk-about-cta__decoration {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.bk-about-cta__decoration--one {
    top: -160px;
    right: -100px;

    width: 420px;
    height: 420px;
}

.bk-about-cta__decoration--two {
    bottom: -210px;
    left: -110px;

    width: 470px;
    height: 470px;
}

.bk-about-cta__content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        86px
        minmax(0, 1fr)
        minmax(390px, auto);

    align-items: center;
    gap: 25px;

    width: 100%;
    padding-bottom: 45px;
}

.bk-about-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 23px;

    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(10px);
}

.bk-about-cta__icon svg {
    width: 37px;
    height: 37px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-cta__text {
    min-width: 0;
}

.bk-about-cta__eyebrow {
    display: inline-flex;
    align-items: center;

    margin: 0 0 11px;
    padding: 6px 13px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.1);
    color: #dceaff;

    font-size: 10.5px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-about-cta__text h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(27px, 2.6vw, 38px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.6px;
}

.bk-about-cta__text h2 span {
    color: #76adff;
}

.bk-about-cta__text p {
    max-width: 680px;

    margin: 12px 0 0;

    color: rgba(235, 243, 255, 0.76);
    font-size: 12.5px;
    line-height: 2;
}

.bk-about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;

    min-width: 0;
}

.bk-about-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;
    padding: 0 18px;

    border-radius: 13px;

    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-about-cta__button:hover {
    transform: translateY(-2px);
}

.bk-about-cta__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-cta__button--primary {
    border: 1px solid #ffffff;

    background: #ffffff;
    color: #145ec9 !important;

    box-shadow:
        0 11px 25px rgba(0, 0, 0, 0.13);
}

.bk-about-cta__button--primary:hover {
    background: #f1f6ff;

    box-shadow:
        0 14px 29px rgba(0, 0, 0, 0.18);
}

.bk-about-cta__button--light {
    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;

    backdrop-filter: blur(7px);
}

.bk-about-cta__button--light:hover {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.19);
}

.bk-about-cta__button--outline {
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: transparent;
    color: #ffffff !important;
}

.bk-about-cta__button--outline:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

/* Trust bar */

.bk-about-cta__trust {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    width: calc(100% + 116px);
    margin-right: -58px;
    padding: 18px 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(4, 22, 52, 0.25);

    backdrop-filter: blur(8px);
}

.bk-about-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.84);
}

.bk-about-cta__trust-item svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: #71aaff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-about-cta__trust-item span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
}

.bk-about-cta__trust-separator {
    width: 1px;
    height: 22px;

    background: rgba(255, 255, 255, 0.13);
}

/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {
    .bk-about-cta {
        padding-right: 40px;
        padding-left: 40px;
    }

    .bk-about-cta__content {
        grid-template-columns:
            75px
            minmax(0, 1fr);

        gap: 20px;
    }

    .bk-about-cta__actions {
        grid-column: 1 / -1;
        justify-content: center;

        margin-top: 5px;
    }

    .bk-about-cta__trust {
        width: calc(100% + 80px);
        margin-right: -40px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .bk-about-cta-section {
        padding-right: 18px;
        padding-left: 18px;
    }

    .bk-about-cta__content {
        display: flex;
        flex-direction: column;

        text-align: center;
    }

    .bk-about-cta__eyebrow {
        justify-content: center;
    }

    .bk-about-cta__text p {
        margin-right: auto;
        margin-left: auto;
    }

    .bk-about-cta__actions {
        justify-content: center;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .bk-about-cta-section {
        padding: 12px 12px 58px;
    }

    .bk-about-cta {
        padding: 38px 18px 0;

        border-radius: 22px;
    }

    .bk-about-cta__content {
        gap: 17px;
        padding-bottom: 30px;
    }

    .bk-about-cta__icon {
        width: 66px;
        height: 66px;

        border-radius: 19px;
    }

    .bk-about-cta__icon svg {
        width: 31px;
        height: 31px;
    }

    .bk-about-cta__text h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-about-cta__text p {
        font-size: 11.5px;
        line-height: 2;
    }

    .bk-about-cta__actions {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
    }

    .bk-about-cta__button {
        width: 100%;
        min-height: 49px;
    }

    .bk-about-cta__trust {
        flex-wrap: wrap;
        gap: 12px 19px;

        width: calc(100% + 36px);
        margin-right: -18px;
        padding: 16px 13px;
    }

    .bk-about-cta__trust-separator {
        display: none;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .bk-about-cta {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-about-cta__trust {
        width: calc(100% + 28px);
        margin-right: -14px;
    }

    .bk-about-cta__trust-item {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bk-about-cta-section *,
    .bk-about-cta-section *::before,
    .bk-about-cta-section *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   BEHZADKALA — TRACKING PAGE HERO
========================================================= */

/* ریست کانتینر بیرونی المنتور */

.bk-tracking-hero-wrap {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;

    min-height: 0 !important;

    --widgets-spacing: 0px !important;
}

.bk-tracking-hero-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-tracking-hero-wrap .elementor-widget-html,
.bk-tracking-hero-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   Main section
========================================================= */

.bk-tracking-hero,
.bk-tracking-hero * {
    box-sizing: border-box;
}

.bk-tracking-hero {
    width: 100%;

    margin: 0;
    padding: 32px 22px 38px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8ff 100%
        );
}

.bk-tracking-hero__inner {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, 0.92fr);

    align-items: center;
    gap: 60px;

    width: 100%;
    max-width: 1460px;
    min-height: 510px;

    margin: 0 auto;
    padding: 58px 68px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 7% 12%,
            rgba(31, 105, 225, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 90%,
            rgba(31, 105, 225, 0.09),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 25px 65px rgba(18, 56, 110, 0.08);
}

/* =========================================================
   Content
========================================================= */

.bk-tracking-hero__content {
    position: relative;
    z-index: 3;

    width: 100%;
    min-width: 0;
}

.bk-tracking-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-tracking-hero__content h1 {
    max-width: 760px;
    margin: 0;

    color: #0b2855;
    font-size: clamp(37px, 3.4vw, 49px);
    font-weight: 850;
    line-height: 1.5;
    letter-spacing: -0.9px;
}

.bk-tracking-hero__content h1 span {
    display: block;

    color: #1765dc;
}

.bk-tracking-hero__description {
    max-width: 760px;
    margin: 19px 0 0;

    color: #68778e;
    font-size: 14.5px;
    line-height: 2.15;
}

/* =========================================================
   Features
========================================================= */

.bk-tracking-hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 720px;

    margin-top: 26px;
}

.bk-tracking-hero__feature {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
    min-height: 70px;
    padding: 12px 13px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: rgba(248, 251, 255, 0.94);
}

.bk-tracking-hero__feature-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #e5efff;
    color: #1765dc;
}

.bk-tracking-hero__feature-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-hero__feature > div {
    min-width: 0;
}

.bk-tracking-hero__feature strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-tracking-hero__feature > div > span {
    display: block;

    color: #8290a4;
    font-size: 9.5px;
    line-height: 1.75;
}

/* =========================================================
   Buttons
========================================================= */

.bk-tracking-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin-top: 27px;
}

.bk-tracking-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-hero__button:hover {
    transform: translateY(-2px);
}

.bk-tracking-hero__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-hero__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-tracking-hero__button--primary:hover {
    border-color: #1259c6;
    background: #1259c6;

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.28);
}

.bk-tracking-hero__button--secondary {
    border: 1px solid #d7e3f5;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-tracking-hero__button--secondary:hover {
    border-color: #bdd2f1;
    background: #f4f8ff;
}

/* =========================================================
   Visual area
========================================================= */

.bk-tracking-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
    min-height: 415px;
}

.bk-tracking-hero__glow {
    position: absolute;
    inset: 30px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.18) 0%,
            rgba(31, 105, 225, 0.06) 46%,
            transparent 72%
        );

    filter: blur(9px);
}

/* =========================================================
   Status card
========================================================= */

.bk-tracking-hero__status-card {
    position: relative;
    z-index: 2;

    width: min(100%, 400px);
    padding: 29px 27px 24px;

    border: 1px solid rgba(31, 105, 225, 0.13);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 247, 255, 0.97)
        );

    box-shadow:
        0 26px 58px rgba(26, 67, 126, 0.14);
}

.bk-tracking-hero__status-head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 21px;

    border-bottom: 1px solid #e1e9f4;
}

.bk-tracking-hero__status-icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.23);
}

.bk-tracking-hero__status-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-hero__status-head > div {
    min-width: 0;
}

.bk-tracking-hero__status-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-tracking-hero__status-head strong {
    display: block;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.6;
}

/* =========================================================
   Progress steps
========================================================= */

.bk-tracking-hero__progress {
    position: relative;

    display: grid;
    gap: 17px;

    margin-top: 22px;
}

.bk-tracking-hero__progress::before {
    position: absolute;
    top: 12px;
    right: 11px;
    bottom: 12px;

    width: 2px;

    background: #e1e8f2;

    content: "";
}

.bk-tracking-hero__step {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bk-tracking-hero__step-dot {
    display: flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 3px solid #e1e8f2;
    border-radius: 50%;

    background: #ffffff;
}

.bk-tracking-hero__step-dot svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-hero__step.is-complete
.bk-tracking-hero__step-dot {
    border-color: #1765dc;

    background: #1765dc;
    color: #ffffff;
}

.bk-tracking-hero__step.is-current
.bk-tracking-hero__step-dot {
    border-color: #1765dc;

    background: #ffffff;

    box-shadow:
        0 0 0 5px rgba(23, 101, 220, 0.12);
}

.bk-tracking-hero__step.is-current
.bk-tracking-hero__step-dot::after {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1765dc;

    content: "";
}

.bk-tracking-hero__step > div {
    min-width: 0;
}

.bk-tracking-hero__step strong {
    display: block;
    margin-bottom: 2px;

    color: #17365f;
    font-size: 11.5px;
    font-weight: 800;
}

.bk-tracking-hero__step > div > span {
    display: block;

    color: #8490a2;
    font-size: 9.5px;
    line-height: 1.75;
}

/* =========================================================
   Security notice
========================================================= */

.bk-tracking-hero__secure {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 22px;
    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 15px;

    background: #eaf2ff;
}

.bk-tracking-hero__secure-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-tracking-hero__secure-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-hero__secure > div {
    min-width: 0;
}

.bk-tracking-hero__secure strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 11px;
    font-weight: 800;
}

.bk-tracking-hero__secure span {
    display: block;

    color: #718198;
    font-size: 9.5px;
    line-height: 1.7;
}

/* =========================================================
   Medium desktop
========================================================= */

@media (max-width: 1200px) {

    .bk-tracking-hero__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.86fr);

        gap: 38px;
        padding: 50px 42px;
    }

    .bk-tracking-hero__content h1 {
        font-size: 40px;
    }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-tracking-hero {
        padding: 24px 16px 32px;
    }

    .bk-tracking-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;

        min-height: 0;
        padding: 46px 36px;

        border-radius: 27px;
    }

    .bk-tracking-hero__content,
    .bk-tracking-hero__visual {
        width: 100%;
    }

    .bk-tracking-hero__visual {
        max-width: 570px;
        min-height: 0;

        margin: 0 auto;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-tracking-hero {
        padding: 14px 11px 26px;
    }

    .bk-tracking-hero__inner {
        gap: 34px;
        padding: 33px 18px 35px;

        border-radius: 22px;
    }

    .bk-tracking-hero__content {
        text-align: center;
    }

    .bk-tracking-hero__eyebrow {
        margin-bottom: 14px;
    }

    .bk-tracking-hero__content h1 {
        font-size: 29px;
        line-height: 1.65;
        letter-spacing: -0.5px;
    }

    .bk-tracking-hero__description {
        margin-top: 15px;

        font-size: 13px;
        line-height: 2.05;
    }

    .bk-tracking-hero__features {
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 22px;
    }

    .bk-tracking-hero__feature {
        text-align: right;
    }

    .bk-tracking-hero__actions {
        justify-content: center;
        margin-top: 23px;
    }

    .bk-tracking-hero__button {
        flex: 1 1 100%;

        width: 100%;
        min-height: 49px;
    }

    .bk-tracking-hero__status-card {
        width: 100%;
        padding: 25px 18px 21px;

        text-align: right;
    }

    .bk-tracking-hero__status-head strong {
        font-size: 16px;
    }

    .bk-tracking-hero__progress::before {
        right: 11px;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-tracking-hero__inner {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-tracking-hero__content h1 {
        font-size: 26px;
    }

    .bk-tracking-hero__status-card {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* =========================================================
   BEHZADKALA — TRACKING SELECTOR
========================================================= */

.bk-tracking-selector-wrap,
.bk-tracking-selector-wrap * {
    box-sizing: border-box;
}

.bk-tracking-selector-wrap {
    width: 100% !important;

    margin: 0 !important;
    padding: 58px 22px 82px !important;
    gap: 0 !important;

    background: #ffffff;

    --widgets-spacing: 0px !important;
}

.bk-tracking-selector-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-tracking-selector-wrap .elementor-widget-html,
.bk-tracking-selector-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100%;

    margin: 0;
    padding: 0;
}

/* =========================================================
   Selector heading
========================================================= */

.bk-tracking-selector {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto;
}

.bk-tracking-selector__head {
    max-width: 760px;

    margin: 0 auto;
    text-align: center;
}

.bk-tracking-selector__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-tracking-selector__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-tracking-selector__head h2 span {
    color: #1765dc;
}

.bk-tracking-selector__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* =========================================================
   Selector tabs
========================================================= */

.bk-tracking-selector__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;

    width: 100%;
    max-width: 1040px;

    margin: 34px auto 0;
}

.bk-tracking-selector__tab {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    min-height: 112px;
    padding: 20px 21px;

    overflow: hidden;

    border: 1px solid #dfe8f4;
    border-radius: 20px;

    background: #ffffff;
    color: inherit;

    font-family: inherit;
    text-align: right;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(24, 63, 119, 0.05);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-selector__tab:hover {
    transform: translateY(-3px);

    border-color: rgba(23, 101, 220, 0.25);

    box-shadow:
        0 18px 40px rgba(24, 63, 119, 0.09);
}

.bk-tracking-selector__tab.is-active {
    border-color: rgba(23, 101, 220, 0.30);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(23, 101, 220, 0.12),
            transparent 42%
        ),
        #f4f8ff;

    box-shadow:
        0 18px 42px rgba(23, 101, 220, 0.12);
}

.bk-tracking-selector__tab-icon {
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 17px;

    background: #e9f1ff;
    color: #1765dc;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-selector__tab.is-active
.bk-tracking-selector__tab-icon {
    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.23);
}

.bk-tracking-selector__tab-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-selector__tab-content {
    display: block;
    flex: 1 1 auto;

    min-width: 0;
}

.bk-tracking-selector__tab-content strong {
    display: block;
    margin-bottom: 4px;

    color: #15345f;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-tracking-selector__tab-content > span {
    display: block;

    color: #748198;
    font-size: 10.5px;
    line-height: 1.85;
}

.bk-tracking-selector__tab-content small {
    display: block;
    margin-top: 5px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.7;
}

.bk-tracking-selector__tab-check {
    display: flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border: 2px solid #d9e3f0;
    border-radius: 50%;

    background: #ffffff;
    color: transparent;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.bk-tracking-selector__tab.is-active
.bk-tracking-selector__tab-check {
    border-color: #1765dc;

    background: #1765dc;
    color: #ffffff;
}

.bk-tracking-selector__tab-check svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   Tracking panels
========================================================= */

.bk-tracking-panel {
    position: relative;

    display: none;
    flex-direction: column;
    gap: 0;

    width: 100% !important;
    max-width: 1100px !important;

    margin: 30px auto 0 !important;
    padding: 34px 36px 38px !important;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 23px 55px rgba(24, 63, 119, 0.08);
}

.bk-tracking-panel.is-active {
    display: flex;
    animation: bkTrackingPanelIn 0.3s ease;
}

@keyframes bkTrackingPanelIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* نمایش هر دو پنل هنگام ویرایش در المنتور */

body.elementor-editor-active
.bk-tracking-panel {
    display: flex !important;
}

/* =========================================================
   Panel introduction
========================================================= */

.bk-tracking-panel__intro {
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
    margin-bottom: 27px;
    padding-bottom: 24px;

    border-bottom: 1px solid #e3ebf5;
}

.bk-tracking-panel__icon {
    display: flex;
    flex: 0 0 61px;
    align-items: center;
    justify-content: center;

    width: 61px;
    height: 61px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.23);
}

.bk-tracking-panel__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-panel__intro > div {
    min-width: 0;
}

.bk-tracking-panel__label {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-tracking-panel__intro h3 {
    margin: 0;

    color: #0b2855;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.65;
}

.bk-tracking-panel__intro p {
    margin: 4px 0 0;

    color: #748198;
    font-size: 11.5px;
    line-height: 1.95;
}

/* =========================================================
   Shortcode widgets
========================================================= */

.bk-tracking-shortcode {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

.bk-tracking-shortcode
> .elementor-widget-container {
    width: 100%;

    margin: 0;
    padding: 0;
}

/* =========================================================
   Account help
========================================================= */

.bk-tracking-account-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    width: 100%;
    margin-top: 27px;
    padding: 17px 18px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 16px;

    background: #f3f7fd;
}

.bk-tracking-account-help__text {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.bk-tracking-account-help__icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-tracking-account-help__icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-account-help__text strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 11.5px;
    font-weight: 800;
}

.bk-tracking-account-help__text span {
    display: block;

    color: #75839a;
    font-size: 10px;
    line-height: 1.8;
}

.bk-tracking-account-help__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 45px;
    padding: 0 18px;

    border: 1px solid #1765dc;
    border-radius: 12px;

    background: #1765dc;
    color: #ffffff !important;

    font-size: 11px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-account-help__button:hover {
    transform: translateY(-2px);

    background: #1259c6;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.22);
}

.bk-tracking-account-help__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-tracking-selector-wrap {
        padding: 48px 18px 68px !important;
    }

    .bk-tracking-selector__tabs {
        max-width: 760px;
    }

    .bk-tracking-panel {
        padding: 30px 28px 34px !important;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-tracking-selector-wrap {
        padding: 40px 12px 55px !important;
    }

    .bk-tracking-selector__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-tracking-selector__head p {
        font-size: 12.5px;
    }

    .bk-tracking-selector__tabs {
        grid-template-columns: 1fr;
        gap: 10px;

        margin-top: 27px;
    }

    .bk-tracking-selector__tab {
        min-height: 98px;
        padding: 16px 15px;
    }

    .bk-tracking-selector__tab-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-tracking-selector__tab-icon svg {
        width: 25px;
        height: 25px;
    }

    .bk-tracking-selector__tab-content strong {
        font-size: 12.5px;
    }

    .bk-tracking-selector__tab-content > span {
        font-size: 9.5px;
    }

    .bk-tracking-selector__tab-content small {
        font-size: 8.8px;
    }

    .bk-tracking-panel {
        margin-top: 22px !important;
        padding: 24px 17px 27px !important;

        border-radius: 20px;
    }

    .bk-tracking-panel__intro {
        align-items: flex-start;
        gap: 12px;

        margin-bottom: 22px;
        padding-bottom: 20px;

        text-align: right;
    }

    .bk-tracking-panel__icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-tracking-panel__icon svg {
        width: 25px;
        height: 25px;
    }

    .bk-tracking-panel__intro h3 {
        font-size: 17px;
    }

    .bk-tracking-panel__intro p {
        font-size: 10.5px;
    }

    .bk-tracking-account-help {
        flex-direction: column;
        align-items: stretch;

        gap: 14px;
        padding: 15px;
    }

    .bk-tracking-account-help__button {
        width: 100%;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-tracking-selector__tab {
        gap: 10px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .bk-tracking-selector__tab-check {
        display: none;
    }

    .bk-tracking-panel {
        padding-right: 14px !important;
        padding-left: 14px !important;
    }
}

/* جلوگیری از تداخل نمایش پنل‌های رهگیری */

.bk-tracking-panel--repair,
.bk-tracking-panel--order {
    display: none;
}

.bk-tracking-panel--repair.is-active,
.bk-tracking-panel--order.is-active {
    display: flex;
}

/* در ویرایشگر المنتور هر دو پنل قابل مشاهده باشند */

body.elementor-editor-active .bk-tracking-panel,
body.elementor-editor-preview .bk-tracking-panel {
    display: flex !important;
}

/* =========================================================
   WooCommerce tracking notices
========================================================= */

.bk-tracking-panel--order
.woocommerce-error,
.bk-tracking-panel--order
.woocommerce-message,
.bk-tracking-panel--order
.woocommerce-info {
    position: relative;

    width: 100%;
    margin: 0 0 24px !important;
    padding: 16px 18px !important;

    border: 1px solid #f0d38d !important;
    border-radius: 14px !important;

    background: #fff8e8 !important;
    color: #875d09 !important;

    font-size: 12.5px !important;
    line-height: 2 !important;
    text-align: right !important;

    box-shadow: none !important;
}

.bk-tracking-panel--order
.woocommerce-error::before,
.bk-tracking-panel--order
.woocommerce-message::before,
.bk-tracking-panel--order
.woocommerce-info::before {
    display: none !important;
}

.bk-tracking-panel--order
.woocommerce-error a,
.bk-tracking-panel--order
.woocommerce-message a,
.bk-tracking-panel--order
.woocommerce-info a {
    color: #1765dc !important;
    font-weight: 750;
}

/* =========================================================
   BEHZADKALA — TRACKING STATUS GUIDE
========================================================= */

.bk-tracking-status-guide-wrap,
.bk-tracking-status-guide-wrap * {
    box-sizing: border-box;
}

.bk-tracking-status-guide-wrap {
    width: 100% !important;

    margin: 0 !important;
    padding: 76px 22px 78px !important;
    gap: 0 !important;

    background:
        linear-gradient(
            180deg,
            #f6f9fe 0%,
            #ffffff 100%
        );

    --widgets-spacing: 0px !important;
}

.bk-tracking-status-guide-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-tracking-status-guide-wrap .elementor-widget-html,
.bk-tracking-status-guide-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100%;

    margin: 0;
    padding: 0;
}

/* =========================================================
   Section
========================================================= */

.bk-tracking-status-guide {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto;
}

.bk-tracking-status-guide__head {
    max-width: 770px;

    margin: 0 auto;
    text-align: center;
}

.bk-tracking-status-guide__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-tracking-status-guide__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-tracking-status-guide__head h2 span {
    color: #1765dc;
}

.bk-tracking-status-guide__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* =========================================================
   Status cards
========================================================= */

.bk-tracking-status-guide__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;

    width: 100%;
    margin-top: 38px;
}

.bk-tracking-status-card {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 330px;
    padding: 25px 22px 23px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 36%
        ),
        #ffffff;

    box-shadow:
        0 16px 38px rgba(24, 63, 119, 0.065);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-status-card:hover {
    transform: translateY(-4px);

    border-color: rgba(23, 101, 220, 0.20);

    box-shadow:
        0 23px 48px rgba(24, 63, 119, 0.10);
}

.bk-tracking-status-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bk-tracking-status-card__icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-tracking-status-card__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-status-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 28px;
    padding: 0 10px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 100px;

    background: #edf4ff;

    color: #1765dc;
    font-size: 10px;
    font-weight: 850;
}

.bk-tracking-status-card h3 {
    margin: 21px 0 0;

    color: #12335e;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-tracking-status-card > p {
    margin: 9px 0 0;

    color: #748198;
    font-size: 11.5px;
    line-height: 2;
}

.bk-tracking-status-card__examples {
    display: grid;
    gap: 10px;

    margin-top: 21px;
    padding-top: 18px;

    border-top: 1px solid #e4ebf4;
}

.bk-tracking-status-card__examples > div {
    position: relative;

    padding-right: 15px;

    color: #75839a;
    font-size: 9.7px;
    line-height: 1.9;
}

.bk-tracking-status-card__examples strong {
    color: #28466e;
    font-weight: 800;
}

.bk-tracking-status-card__dot {
    position: absolute;
    top: 8px;
    right: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #1765dc;

    box-shadow:
        0 0 0 4px rgba(23, 101, 220, 0.10);
}

/* =========================================================
   Information notice
========================================================= */

.bk-tracking-status-guide__notice {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    max-width: 980px;

    margin: 26px auto 0;
    padding: 17px 19px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-tracking-status-guide__notice-icon {
    display: flex;
    flex: 0 0 45px;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 14px;

    background: #ffffff;
    color: #1765dc;
}

.bk-tracking-status-guide__notice-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-status-guide__notice > div {
    min-width: 0;
}

.bk-tracking-status-guide__notice strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11.5px;
    font-weight: 850;
}

.bk-tracking-status-guide__notice span {
    display: block;

    color: #6f7f96;
    font-size: 10.5px;
    line-height: 1.9;
}

/* =========================================================
   Medium desktop
========================================================= */

@media (max-width: 1200px) {

    .bk-tracking-status-guide__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .bk-tracking-status-card {
        min-height: 285px;
    }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-tracking-status-guide-wrap {
        padding: 62px 18px 66px !important;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-tracking-status-guide-wrap {
        padding: 48px 12px 54px !important;
    }

    .bk-tracking-status-guide__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-tracking-status-guide__head p {
        font-size: 12.5px;
    }

    .bk-tracking-status-guide__grid {
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 29px;
    }

    .bk-tracking-status-card {
        min-height: 0;
        padding: 21px 18px;
    }

    .bk-tracking-status-card__icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .bk-tracking-status-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .bk-tracking-status-card h3 {
        margin-top: 17px;

        font-size: 15px;
    }

    .bk-tracking-status-guide__notice {
        align-items: flex-start;

        padding: 15px;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-tracking-status-guide__notice {
        gap: 11px;
    }

    .bk-tracking-status-guide__notice-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   BEHZADKALA — TRACKING CODE GUIDE
========================================================= */

.bk-tracking-code-guide-wrap,
.bk-tracking-code-guide-wrap * {
    box-sizing: border-box;
}

.bk-tracking-code-guide-wrap {
    width: 100% !important;

    margin: 0 !important;
    padding: 76px 22px 80px !important;
    gap: 0 !important;

    background: #ffffff;

    --widgets-spacing: 0px !important;
}

.bk-tracking-code-guide-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-tracking-code-guide-wrap .elementor-widget-html,
.bk-tracking-code-guide-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100%;

    margin: 0;
    padding: 0;
}

/* =========================================================
   Section heading
========================================================= */

.bk-tracking-code-guide {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto;
}

.bk-tracking-code-guide__head {
    max-width: 780px;

    margin: 0 auto;
    text-align: center;
}

.bk-tracking-code-guide__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-tracking-code-guide__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-tracking-code-guide__head h2 span {
    color: #1765dc;
}

.bk-tracking-code-guide__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* =========================================================
   Cards grid
========================================================= */

.bk-tracking-code-guide__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 38px auto 0;
}

.bk-tracking-code-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    padding: 29px 28px 27px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-code-card:hover {
    transform: translateY(-4px);

    border-color: rgba(23, 101, 220, 0.21);

    box-shadow:
        0 25px 55px rgba(24, 63, 119, 0.11);
}

/* =========================================================
   Card header
========================================================= */

.bk-tracking-code-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bk-tracking-code-card__icon {
    display: flex;
    flex: 0 0 59px;
    align-items: center;
    justify-content: center;

    width: 59px;
    height: 59px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.23);
}

.bk-tracking-code-card__icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-code-card__header > div {
    min-width: 0;
}

.bk-tracking-code-card__label {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-tracking-code-card__header h3 {
    margin: 0;

    color: #0b2855;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.65;
}

.bk-tracking-code-card__description {
    margin: 18px 0 0;

    color: #748198;
    font-size: 12px;
    line-height: 2;
}

/* =========================================================
   Sample code
========================================================= */

.bk-tracking-code-card__sample {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: 21px;
    padding: 15px 17px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 15px;

    background: #edf4ff;
}

.bk-tracking-code-card__sample span {
    color: #6f7f97;
    font-size: 10.5px;
    font-weight: 700;
}

.bk-tracking-code-card__sample strong {
    color: #0b2855;

    font-family:
        Arial,
        sans-serif;

    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.5px;
}

/* =========================================================
   Locations
========================================================= */

.bk-tracking-code-card__locations {
    display: grid;
    gap: 10px;

    margin-top: 23px;
}

.bk-tracking-code-card__locations h4 {
    margin: 0 0 3px;

    color: #29486f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.8;
}

.bk-tracking-code-card__location {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 11px 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.82);
}

.bk-tracking-code-card__location-icon {
    display: flex;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-tracking-code-card__location-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-code-card__location > div {
    min-width: 0;
}

.bk-tracking-code-card__location strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10.5px;
    font-weight: 800;
}

.bk-tracking-code-card__location span {
    display: block;

    color: #7a8799;
    font-size: 9.5px;
    line-height: 1.75;
}

/* =========================================================
   Buttons
========================================================= */

.bk-tracking-code-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: fit-content;
    min-height: 47px;

    margin-top: auto;
    padding: 0 19px;
    padding-top: 1px;

    border: 1px solid #1765dc;
    border-radius: 12px;

    background: #1765dc;
    color: #ffffff !important;

    font-size: 11px;
    font-weight: 750;
    text-decoration: none !important;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.19);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-code-card__locations
+ .bk-tracking-code-card__button {
    margin-top: 23px;
}

.bk-tracking-code-card__button:hover {
    transform: translateY(-2px);

    background: #1259c6;

    box-shadow:
        0 14px 28px rgba(23, 101, 220, 0.25);
}

.bk-tracking-code-card__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   Warning
========================================================= */

.bk-tracking-code-guide__warning {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    max-width: 980px;

    margin: 25px auto 0;
    padding: 17px 19px;

    border: 1px solid #f0d38d;
    border-radius: 17px;

    background: #fff8e8;
}

.bk-tracking-code-guide__warning-icon {
    display: flex;
    flex: 0 0 45px;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 14px;

    background: #ffffff;
    color: #b77800;
}

.bk-tracking-code-guide__warning-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-code-guide__warning > div {
    min-width: 0;
}

.bk-tracking-code-guide__warning strong {
    display: block;
    margin-bottom: 3px;

    color: #76520b;
    font-size: 11.5px;
    font-weight: 850;
}

.bk-tracking-code-guide__warning span {
    display: block;

    color: #8b6a28;
    font-size: 10.5px;
    line-height: 1.9;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-tracking-code-guide-wrap {
        padding: 62px 18px 68px !important;
    }

    .bk-tracking-code-guide__grid {
        max-width: 760px;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-tracking-code-guide-wrap {
        padding: 48px 12px 55px !important;
    }

    .bk-tracking-code-guide__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-tracking-code-guide__head p {
        font-size: 12.5px;
    }

    .bk-tracking-code-guide__grid {
        grid-template-columns: 1fr;
        gap: 12px;

        margin-top: 29px;
    }

    .bk-tracking-code-card {
        padding: 23px 18px 22px;
        border-radius: 20px;
    }

    .bk-tracking-code-card__icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-tracking-code-card__icon svg {
        width: 25px;
        height: 25px;
    }

    .bk-tracking-code-card__header h3 {
        font-size: 17px;
    }

    .bk-tracking-code-card__sample {
        padding: 13px 14px;
    }

    .bk-tracking-code-card__button {
        width: 100%;
    }

    .bk-tracking-code-guide__warning {
        align-items: flex-start;
        padding: 15px;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-tracking-code-card__sample {
        flex-direction: column;
        align-items: flex-start;
    }

    .bk-tracking-code-guide__warning {
        gap: 11px;
    }

    .bk-tracking-code-guide__warning-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   BEHZADKALA — TRACKING SUPPORT AND FAQ
========================================================= */

.bk-tracking-support-wrap,
.bk-tracking-support-wrap * {
    box-sizing: border-box;
}

.bk-tracking-support-wrap {
    width: 100% !important;

    margin: 0 !important;
    padding: 74px 22px 88px !important;
    gap: 0 !important;

    background:
        linear-gradient(
            180deg,
            #f6f9fe 0%,
            #ffffff 100%
        );

    --widgets-spacing: 0px !important;
}

.bk-tracking-support-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-tracking-support-wrap .elementor-widget-html,
.bk-tracking-support-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100%;

    margin: 0;
    padding: 0;
}

/* =========================================================
   Main section
========================================================= */

.bk-tracking-support {
    width: 100%;
    max-width: 1460px;

    margin: 0 auto;
}

/* =========================================================
   Support card
========================================================= */

.bk-tracking-support__card {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(350px, 0.92fr);

    align-items: center;
    gap: 52px;

    width: 100%;
    padding: 48px 54px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.12);
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.11),
            transparent 31%
        ),
        radial-gradient(
            circle at 0 100%,
            rgba(31, 105, 225, 0.07),
            transparent 29%
        ),
        #ffffff;

    box-shadow:
        0 24px 58px rgba(24, 63, 119, 0.09);
}

.bk-tracking-support__content {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.bk-tracking-support__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-tracking-support__content h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-tracking-support__content h2 span {
    color: #1765dc;
}

.bk-tracking-support__content > p {
    max-width: 760px;
    margin: 15px 0 0;

    color: #748198;
    font-size: 13px;
    line-height: 2.1;
}

/* =========================================================
   Support methods
========================================================= */

.bk-tracking-support__methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    margin-top: 25px;
}

.bk-tracking-support__method {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 82px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: rgba(248, 251, 255, 0.91);
    color: inherit;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

a.bk-tracking-support__method:hover {
    transform: translateY(-2px);

    border-color: rgba(23, 101, 220, 0.20);

    box-shadow:
        0 12px 27px rgba(24, 63, 119, 0.08);
}

.bk-tracking-support__method-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: #e6efff;
    color: #1765dc;
}

.bk-tracking-support__method-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-support__method > div {
    min-width: 0;
}

.bk-tracking-support__method span {
    display: block;

    color: #7d899a;
    font-size: 9px;
}

.bk-tracking-support__method strong {
    display: block;
    margin-top: 2px;

    color: #25446c;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-tracking-support__method small {
    display: block;
    margin-top: 2px;

    color: #8a95a5;
    font-size: 8.5px;
    line-height: 1.65;
}

/* =========================================================
   Support buttons
========================================================= */

.bk-tracking-support__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;

    margin-top: 25px;
}

.bk-tracking-support__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 49px;
    padding: 0 21px;

    border-radius: 13px;

    font-size: 12px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-support__button:hover {
    transform: translateY(-2px);
}

.bk-tracking-support__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-support__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 10px 24px rgba(23, 101, 220, 0.21);
}

.bk-tracking-support__button--primary:hover {
    background: #1259c6;

    box-shadow:
        0 14px 29px rgba(23, 101, 220, 0.27);
}

.bk-tracking-support__button--secondary {
    border: 1px solid #d7e3f5;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-tracking-support__button--secondary:hover {
    border-color: #bed2ef;
    background: #f4f8ff;
}

/* =========================================================
   Visual side
========================================================= */

.bk-tracking-support__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 380px;
}

.bk-tracking-support__visual-glow {
    position: absolute;
    inset: 25px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.18),
            rgba(31, 105, 225, 0.05) 48%,
            transparent 72%
        );

    filter: blur(10px);
}

.bk-tracking-support__visual-card {
    position: relative;
    z-index: 2;

    width: min(100%, 385px);
    padding: 31px 28px 27px;

    border: 1px solid rgba(31, 105, 225, 0.12);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f8ff
        );

    box-shadow:
        0 24px 54px rgba(26, 67, 126, 0.14);
}

.bk-tracking-support__visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.24);
}

.bk-tracking-support__visual-icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-support__visual-label {
    display: block;
    margin-top: 20px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-tracking-support__visual-card > strong {
    display: block;
    margin-top: 4px;

    color: #0b2855;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.65;
}

.bk-tracking-support__visual-card > p {
    margin: 11px 0 0;

    color: #748198;
    font-size: 11px;
    line-height: 2;
}

.bk-tracking-support__visual-list {
    display: grid;
    gap: 9px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid #e1e9f3;
}

.bk-tracking-support__visual-list > div {
    position: relative;

    padding-right: 17px;

    color: #445d7e;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.8;
}

.bk-tracking-support__visual-list span {
    position: absolute;
    top: 7px;
    right: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1765dc;

    box-shadow:
        0 0 0 4px rgba(23, 101, 220, 0.10);
}

/* =========================================================
   FAQ section
========================================================= */

.bk-tracking-faq {
    width: 100%;
    max-width: 1080px;

    margin: 76px auto 0;
}

.bk-tracking-faq__head {
    max-width: 720px;

    margin: 0 auto;
    text-align: center;
}

.bk-tracking-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-tracking-faq__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 850;
    line-height: 1.6;
}

.bk-tracking-faq__head h2 span {
    color: #1765dc;
}

.bk-tracking-faq__head p {
    margin: 14px 0 0;

    color: #748198;
    font-size: 13px;
    line-height: 2;
}

.bk-tracking-faq__list {
    display: grid;
    gap: 10px;

    margin-top: 32px;
}

/* =========================================================
   FAQ items
========================================================= */

.bk-tracking-faq__item {
    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(24, 63, 119, 0.045);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-tracking-faq__item[open] {
    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 16px 35px rgba(24, 63, 119, 0.075);
}

.bk-tracking-faq__item summary {
    display: flex;
    align-items: center;
    gap: 13px;

    width: 100%;
    min-height: 70px;
    padding: 14px 17px;

    color: inherit;
    list-style: none;

    cursor: pointer;
}

.bk-tracking-faq__item summary::-webkit-details-marker {
    display: none;
}

.bk-tracking-faq__question-icon {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-tracking-faq__item summary strong {
    flex: 1 1 auto;

    min-width: 0;

    color: #1c3c66;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.9;
}

.bk-tracking-faq__toggle {
    display: flex;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 11px;

    background: #f2f6fc;
    color: #1765dc;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.bk-tracking-faq__toggle svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-tracking-faq__item[open]
.bk-tracking-faq__toggle {
    transform: rotate(180deg);

    background: #e5efff;
}

.bk-tracking-faq__answer {
    padding: 0 68px 18px 70px;
}

.bk-tracking-faq__answer p {
    margin: 0;
    padding-top: 14px;

    border-top: 1px solid #e5ebf3;

    color: #748198;
    font-size: 11.5px;
    line-height: 2.1;
}

/* =========================================================
   Medium desktop
========================================================= */

@media (max-width: 1200px) {

    .bk-tracking-support__card {
        gap: 35px;
        padding: 42px 38px;
    }

    .bk-tracking-support__methods {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-tracking-support-wrap {
        padding: 60px 18px 72px !important;
    }

    .bk-tracking-support__card {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .bk-tracking-support__visual {
        min-height: 0;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-tracking-support-wrap {
        padding: 47px 12px 58px !important;
    }

    .bk-tracking-support__card {
        gap: 32px;
        padding: 27px 18px 30px;

        border-radius: 21px;
    }

    .bk-tracking-support__content {
        text-align: center;
    }

    .bk-tracking-support__content h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-tracking-support__content > p {
        font-size: 12.5px;
    }

    .bk-tracking-support__methods {
        text-align: right;
    }

    .bk-tracking-support__actions {
        justify-content: center;
    }

    .bk-tracking-support__button {
        flex: 1 1 100%;

        width: 100%;
    }

    .bk-tracking-support__visual-card {
        width: 100%;
        padding: 25px 20px;
        text-align: right;
    }

    .bk-tracking-faq {
        margin-top: 56px;
    }

    .bk-tracking-faq__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-tracking-faq__head p {
        font-size: 12.5px;
    }

    .bk-tracking-faq__item summary {
        align-items: flex-start;
        gap: 10px;

        min-height: 64px;
        padding: 13px 12px;
    }

    .bk-tracking-faq__question-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;
    }

    .bk-tracking-faq__item summary strong {
        font-size: 11.5px;
    }

    .bk-tracking-faq__toggle {
        flex-basis: 32px;

        width: 32px;
        height: 32px;
    }

    .bk-tracking-faq__answer {
        padding: 0 56px 16px 12px;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-tracking-support__method {
        padding-right: 10px;
        padding-left: 10px;
    }

    .bk-tracking-faq__question-icon {
        display: none;
    }

    .bk-tracking-faq__answer {
        padding-right: 13px;
    }
}

/* =========================================================
   FIX — فاصله بین راهنمای وضعیت و راهنمای شناسه
========================================================= */

.bk-tracking-status-guide-wrap {
    margin-bottom: 0 !important;
    padding-bottom: 30px !important;
}

.bk-tracking-code-guide-wrap {
    margin-top: 0 !important;
    padding-top: 38px !important;
}

/* حذف فاصله احتمالی کانتینرهای المنتور */

.bk-tracking-status-guide-wrap,
.bk-tracking-code-guide-wrap {
    gap: 0 !important;
    min-height: 0 !important;
}

.bk-tracking-status-guide-wrap > .e-con-inner,
.bk-tracking-code-guide-wrap > .e-con-inner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 0 !important;
}

/* موبایل */

@media (max-width: 767px) {

    .bk-tracking-status-guide-wrap {
        padding-bottom: 20px !important;
    }

    .bk-tracking-code-guide-wrap {
        padding-top: 30px !important;
    }
}

/* =========================================================
   FIX — Tracking sections vertical spacing
========================================================= */


/* فاصله شروع بخش وضعیت ها */

.bk-tracking-status-guide-wrap {

    margin-top: 0 !important;
    padding-top: 35px !important;
    padding-bottom: 45px !important;

}


/* حذف فاصله داخلی المنتور */

.bk-tracking-status-guide-wrap > .e-con-inner {

    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 0 !important;

}


/* عنوان بخش وضعیت */

.bk-tracking-status-guide-wrap
.bk-tracking-status-guide__header {

    margin-bottom: 35px !important;

}


/* فاصله کارت های وضعیت */

.bk-tracking-status-guide-wrap
.bk-tracking-status-guide__items {

    margin-top: 0 !important;
    gap: 18px !important;

}


/* بخش بالایی قبل از وضعیت */

.bk-tracking-code-guide-wrap {

    margin-bottom: 0 !important;
    padding-bottom: 35px !important;

}


.bk-tracking-code-guide-wrap > .e-con-inner {

    margin-bottom: 0 !important;
    padding-bottom: 0 !important;

}


/* موبایل */

@media(max-width:767px){

    .bk-tracking-status-guide-wrap {

        padding-top: 25px !important;
        padding-bottom: 30px !important;

    }

    .bk-tracking-code-guide-wrap {

        padding-bottom: 25px !important;

    }

}

/* =========================================================
   BEHZADKALA — SHIPPING PAGE HERO
========================================================= */

.bk-shipping-hero-wrap,
.bk-shipping-hero-wrap * {
    box-sizing: border-box;
}

/* کانتینر بیرونی المنتور */

.bk-shipping-hero-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-shipping-hero-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-shipping-hero-wrap .elementor-widget-html,
.bk-shipping-hero-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   Section
========================================================= */

.bk-shipping-hero {
    width: 100%;
    margin: 0;
    padding: 32px 22px 38px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8ff 100%
        );
}

.bk-shipping-hero__inner {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(370px, 0.92fr);

    align-items: center;
    gap: 58px;

    width: 100%;
    max-width: 1460px;
    min-height: 540px;

    margin: 0 auto;
    padding: 58px 68px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(31, 105, 225, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(31, 105, 225, 0.08),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 25px 65px rgba(18, 56, 110, 0.08);
}

/* =========================================================
   Content
========================================================= */

.bk-shipping-hero__content {
    position: relative;
    z-index: 3;

    width: 100%;
    min-width: 0;

    text-align: right;
}

.bk-shipping-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;

    color: #1765dc;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-shipping-hero__title {
    max-width: 780px;
    margin: 0;

    color: #0b2855;
    font-size: clamp(38px, 3.4vw, 50px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.9px;
}

.bk-shipping-hero__title span {
    display: block;
    color: #1765dc;
}

.bk-shipping-hero__description {
    max-width: 760px;
    margin: 19px 0 0;

    color: #68778e;
    font-size: 14.5px;
    line-height: 2.15;
}

/* =========================================================
   Features
========================================================= */

.bk-shipping-hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 720px;

    margin-top: 26px;
}

.bk-shipping-hero__feature {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
    min-height: 70px;
    padding: 12px 13px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: rgba(248, 251, 255, 0.94);
}

.bk-shipping-hero__feature-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #e5efff;
    color: #1765dc;
}

.bk-shipping-hero__feature-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-hero__feature > div {
    min-width: 0;
}

.bk-shipping-hero__feature strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
}

.bk-shipping-hero__feature span {
    display: block;

    color: #8290a4;
    font-size: 9.5px;
    line-height: 1.75;
}

/* =========================================================
   Actions
========================================================= */

.bk-shipping-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin-top: 27px;
}

.bk-shipping-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-hero__button:hover {
    transform: translateY(-2px);
}

.bk-shipping-hero__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-hero__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-shipping-hero__button--primary:hover {
    border-color: #1259c6;
    background: #1259c6;

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.28);
}

.bk-shipping-hero__button--secondary {
    border: 1px solid #d7e3f5;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-shipping-hero__button--secondary:hover {
    border-color: #bdd2f1;
    background: #f4f8ff;
}

/* =========================================================
   Visual
========================================================= */

.bk-shipping-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
    min-height: 420px;
}

.bk-shipping-hero__glow {
    position: absolute;
    inset: 25px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.18) 0%,
            rgba(31, 105, 225, 0.06) 47%,
            transparent 72%
        );

    filter: blur(9px);
}

/* =========================================================
   Shipping card
========================================================= */

.bk-shipping-card {
    position: relative;
    z-index: 2;

    width: min(100%, 405px);
    padding: 29px 27px 24px;

    border: 1px solid rgba(31, 105, 225, 0.13);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 247, 255, 0.97)
        );

    box-shadow:
        0 26px 58px rgba(26, 67, 126, 0.14);
}

.bk-shipping-card__header {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 21px;

    border-bottom: 1px solid #e1e9f4;
}

.bk-shipping-card__main-icon {
    display: flex;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.23);
}

.bk-shipping-card__main-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-card__header > div {
    min-width: 0;
}

.bk-shipping-card__header span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-shipping-card__header strong {
    display: block;

    color: #0b2855;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.6;
}

/* =========================================================
   Progress
========================================================= */

.bk-shipping-card__progress {
    position: relative;

    display: grid;
    gap: 17px;

    margin-top: 22px;
}

.bk-shipping-card__progress::before {
    position: absolute;
    top: 12px;
    right: 11px;
    bottom: 12px;

    width: 2px;

    background: #e1e8f2;

    content: "";
}

.bk-shipping-card__step {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bk-shipping-card__step-icon {
    display: flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 3px solid #e1e8f2;
    border-radius: 50%;

    background: #ffffff;
}

.bk-shipping-card__step-icon svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-card__step.is-complete
.bk-shipping-card__step-icon {
    border-color: #1765dc;
    background: #1765dc;
    color: #ffffff;
}

.bk-shipping-card__step.is-current
.bk-shipping-card__step-icon {
    border-color: #1765dc;
    background: #ffffff;

    box-shadow:
        0 0 0 5px rgba(23, 101, 220, 0.12);
}

.bk-shipping-card__step.is-current
.bk-shipping-card__step-icon::after {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1765dc;

    content: "";
}

.bk-shipping-card__step > div {
    min-width: 0;
}

.bk-shipping-card__step strong {
    display: block;
    margin-bottom: 2px;

    color: #17365f;
    font-size: 11.5px;
    font-weight: 800;
}

.bk-shipping-card__step span {
    display: block;

    color: #8490a2;
    font-size: 9.5px;
    line-height: 1.75;
}

/* =========================================================
   Notice
========================================================= */

.bk-shipping-card__notice {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 22px;
    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 15px;

    background: #eaf2ff;
}

.bk-shipping-card__notice-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-shipping-card__notice-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-card__notice > div {
    min-width: 0;
}

.bk-shipping-card__notice strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 11px;
    font-weight: 800;
}

.bk-shipping-card__notice span {
    display: block;

    color: #718198;
    font-size: 9.5px;
    line-height: 1.7;
}

/* =========================================================
   Medium desktop
========================================================= */

@media (max-width: 1200px) {

    .bk-shipping-hero__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.86fr);

        gap: 38px;
        padding: 50px 42px;
    }

    .bk-shipping-hero__title {
        font-size: 40px;
    }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-shipping-hero {
        padding: 24px 16px 32px;
    }

    .bk-shipping-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;

        min-height: 0;
        padding: 46px 36px;

        border-radius: 27px;
    }

    .bk-shipping-hero__visual {
        max-width: 570px;
        min-height: 0;
        margin: 0 auto;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-shipping-hero {
        padding: 14px 11px 26px;
    }

    .bk-shipping-hero__inner {
        gap: 34px;
        padding: 33px 18px 35px;

        border-radius: 22px;
    }

    .bk-shipping-hero__content {
        text-align: center;
    }

    .bk-shipping-hero__title {
        font-size: 29px;
        line-height: 1.65;
        letter-spacing: -0.5px;
    }

    .bk-shipping-hero__description {
        margin-top: 15px;

        font-size: 13px;
        line-height: 2.05;
    }

    .bk-shipping-hero__features {
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 22px;
    }

    .bk-shipping-hero__feature {
        text-align: right;
    }

    .bk-shipping-hero__actions {
        justify-content: center;
        margin-top: 23px;
    }

    .bk-shipping-hero__button {
        flex: 1 1 100%;

        width: 100%;
        min-height: 49px;
    }

    .bk-shipping-card {
        width: 100%;
        padding: 25px 18px 21px;

        text-align: right;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-shipping-hero__inner {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bk-shipping-hero__title {
        font-size: 26px;
    }

    .bk-shipping-card {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* =========================================================
   BEHZADKALA — SHIPPING METHODS
========================================================= */

.bk-shipping-methods-wrap,
.bk-shipping-methods-wrap * {
    box-sizing: border-box;
}

.bk-shipping-methods-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-shipping-methods-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-shipping-methods-wrap .elementor-widget-html,
.bk-shipping-methods-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-shipping-methods {
    width: 100%;
    margin: 0;
    padding: 70px 22px 76px;

    background: #ffffff;
}

.bk-shipping-methods__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-shipping-methods__head {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.bk-shipping-methods__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-shipping-methods__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-shipping-methods__head h2 span {
    color: #1765dc;
}

.bk-shipping-methods__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Grid */

.bk-shipping-methods__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 15px;

    width: 100%;
    margin-top: 38px;
}

/* Cards */

.bk-shipping-method-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 330px;
    padding: 25px 22px 23px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 36%
        ),
        #ffffff;

    box-shadow:
        0 16px 38px rgba(24, 63, 119, 0.065);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 101, 220, 0.20);

    box-shadow:
        0 23px 48px rgba(24, 63, 119, 0.10);
}

.bk-shipping-method-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bk-shipping-method-card__icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-shipping-method-card__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-method-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 28px;
    padding: 0 10px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-shipping-method-card h3 {
    margin: 21px 0 0;

    color: #12335e;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.75;
}

.bk-shipping-method-card > p {
    margin: 9px 0 0;

    color: #748198;
    font-size: 11.5px;
    line-height: 2;
}

/* Note and address */

.bk-shipping-method-card__note,
.bk-shipping-method-card__address {
    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid #e4ebf4;

    color: #6f7f97;
    font-size: 9.8px;
    line-height: 1.9;
}

.bk-shipping-method-card__address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bk-shipping-method-card__address svg {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;
    margin-top: 2px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Links */

.bk-shipping-method-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;
    margin-top: auto;
    padding-top: 18px;

    color: #1765dc !important;

    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-shipping-method-card__link svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.2s ease;
}

.bk-shipping-method-card__link:hover svg {
    transform: translateX(-3px);
}

/* Notice */

.bk-shipping-methods__notice {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    max-width: 980px;

    margin: 26px auto 0;
    padding: 17px 19px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-shipping-methods__notice-icon {
    display: flex;
    flex: 0 0 45px;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 14px;

    background: #ffffff;
    color: #1765dc;
}

.bk-shipping-methods__notice-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-methods__notice > div {
    min-width: 0;
}

.bk-shipping-methods__notice strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11.5px;
    font-weight: 850;
}

.bk-shipping-methods__notice span {
    display: block;

    color: #6f7f96;
    font-size: 10.5px;
    line-height: 1.9;
}

/* Medium desktop */

@media (max-width: 1200px) {

    .bk-shipping-methods__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .bk-shipping-method-card {
        min-height: 285px;
    }
}

/* Tablet */

@media (max-width: 900px) {

    .bk-shipping-methods {
        padding: 58px 18px 64px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-shipping-methods {
        padding: 45px 12px 52px;
    }

    .bk-shipping-methods__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-shipping-methods__head p {
        font-size: 12.5px;
    }

    .bk-shipping-methods__grid {
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 29px;
    }

    .bk-shipping-method-card {
        min-height: 0;
        padding: 21px 18px;
    }

    .bk-shipping-method-card__icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .bk-shipping-method-card h3 {
        margin-top: 17px;
        font-size: 15px;
    }

    .bk-shipping-methods__notice {
        align-items: flex-start;
        padding: 15px;
    }
}

/* =========================================================
   BEHZADKALA — SHIPPING PROCESS
========================================================= */

.bk-shipping-process-wrap,
.bk-shipping-process-wrap * {
    box-sizing: border-box;
}

.bk-shipping-process-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-shipping-process-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-shipping-process-wrap .elementor-widget-html,
.bk-shipping-process-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   Section
========================================================= */

.bk-shipping-process {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #ffffff 100%
        );
}

.bk-shipping-process__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* =========================================================
   Heading
========================================================= */

.bk-shipping-process__head {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.bk-shipping-process__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-shipping-process__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-shipping-process__head h2 span {
    color: #1765dc;
}

.bk-shipping-process__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* =========================================================
   Timeline
========================================================= */

.bk-shipping-process__timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 13px;

    width: 100%;
    margin-top: 42px;
}

/* خط ارتباط مراحل */

.bk-shipping-process__timeline::before {
    position: absolute;
    top: 44px;
    right: 8%;
    left: 8%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #dce7f6,
            #1765dc,
            #dce7f6
        );

    content: "";
}

/* =========================================================
   Step cards
========================================================= */

.bk-shipping-process__step {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 300px;
    padding: 20px 18px 19px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 15px 36px rgba(24, 63, 119, 0.06);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-process__step:hover {
    transform: translateY(-4px);

    border-color: rgba(23, 101, 220, 0.21);

    box-shadow:
        0 22px 46px rgba(24, 63, 119, 0.10);
}

.bk-shipping-process__step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bk-shipping-process__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 27px;
    padding: 0 9px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9.5px;
    font-weight: 850;
}

.bk-shipping-process__step-icon {
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 6px solid #ffffff;
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-shipping-process__step-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-process__step h3 {
    margin: 22px 0 0;

    color: #12335e;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.75;
}

.bk-shipping-process__step > p {
    margin: 9px 0 0;

    color: #748198;
    font-size: 10.8px;
    line-height: 2;
}

.bk-shipping-process__status {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    margin-top: auto;
    padding: 6px 10px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9px;
    font-weight: 750;
    line-height: 1.7;
}

/* =========================================================
   Footer notice
========================================================= */

.bk-shipping-process__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    width: 100%;
    max-width: 1080px;

    margin: 27px auto 0;
    padding: 17px 18px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-shipping-process__footer-text {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.bk-shipping-process__footer-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-shipping-process__footer-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-process__footer-text > div {
    min-width: 0;
}

.bk-shipping-process__footer strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11.5px;
    font-weight: 850;
}

.bk-shipping-process__footer span {
    display: block;

    color: #6f7f96;
    font-size: 10.2px;
    line-height: 1.9;
}

/* =========================================================
   Button
========================================================= */

.bk-shipping-process__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 45px;
    padding: 0 18px;

    border: 1px solid #1765dc;
    border-radius: 12px;

    background: #1765dc;
    color: #ffffff !important;

    font-size: 11px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-process__button:hover {
    transform: translateY(-2px);

    background: #1259c6;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.22);
}

.bk-shipping-process__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   Medium desktop
========================================================= */

@media (max-width: 1200px) {

    .bk-shipping-process__timeline {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .bk-shipping-process__timeline::before {
        display: none;
    }

    .bk-shipping-process__step {
        min-height: 275px;
    }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-shipping-process {
        padding: 58px 18px 64px;
    }

    .bk-shipping-process__timeline {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-shipping-process {
        padding: 45px 12px 52px;
    }

    .bk-shipping-process__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-shipping-process__head p {
        font-size: 12.5px;
    }

    .bk-shipping-process__timeline {
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 29px;
    }

    .bk-shipping-process__step {
        min-height: 0;
        padding: 20px 17px;
    }

    .bk-shipping-process__step-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-shipping-process__step h3 {
        margin-top: 17px;
    }

    .bk-shipping-process__footer {
        flex-direction: column;
        align-items: stretch;

        padding: 15px;
    }

    .bk-shipping-process__button {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — SHIPPING TIMING
========================================================= */

.bk-shipping-timing-wrap,
.bk-shipping-timing-wrap * {
    box-sizing: border-box;
}

.bk-shipping-timing-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-shipping-timing-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-shipping-timing-wrap .elementor-widget-html,
.bk-shipping-timing-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   Section
========================================================= */

.bk-shipping-timing {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background: #ffffff;
}

.bk-shipping-timing__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* =========================================================
   Heading
========================================================= */

.bk-shipping-timing__head {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

.bk-shipping-timing__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-shipping-timing__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-shipping-timing__head h2 span {
    display: block;
    color: #1765dc;
}

.bk-shipping-timing__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* =========================================================
   Main layout
========================================================= */

.bk-shipping-timing__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(350px, 0.88fr);

    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

/* =========================================================
   Main timing card
========================================================= */

.bk-shipping-timing__main-card {
    min-width: 0;
    padding: 29px 28px 27px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);
}

.bk-shipping-timing__main-head,
.bk-shipping-timing__factors-head {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 21px;

    border-bottom: 1px solid #e2eaf4;
}

.bk-shipping-timing__main-icon,
.bk-shipping-timing__factors-icon {
    display: flex;
    flex: 0 0 59px;
    align-items: center;
    justify-content: center;

    width: 59px;
    height: 59px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.23);
}

.bk-shipping-timing__main-icon svg,
.bk-shipping-timing__factors-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-timing__main-head > div,
.bk-shipping-timing__factors-head > div {
    min-width: 0;
}

.bk-shipping-timing__main-head span,
.bk-shipping-timing__factors-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-shipping-timing__main-head h3,
.bk-shipping-timing__factors-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.65;
}

/* =========================================================
   Timing rows
========================================================= */

.bk-shipping-timing__rows {
    display: grid;
    gap: 10px;

    margin-top: 21px;
}

.bk-shipping-timing__row {
    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 13px;

    min-height: 91px;
    padding: 14px;

    border: 1px solid rgba(31, 105, 225, 0.08);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.83);
}

.bk-shipping-timing__row-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-shipping-timing__row > div {
    min-width: 0;
}

.bk-shipping-timing__row strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 11px;
    font-weight: 850;
}

.bk-shipping-timing__row p {
    margin: 0;

    color: #7a8799;
    font-size: 9.8px;
    line-height: 1.85;
}

.bk-shipping-timing__row-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 28px;
    padding: 0 10px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 8.8px;
    font-weight: 750;
    white-space: nowrap;
}

/* =========================================================
   Factors card
========================================================= */

.bk-shipping-timing__factors {
    min-width: 0;
    padding: 29px 27px 27px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);
}

.bk-shipping-timing__factor-list {
    display: grid;
    gap: 10px;

    margin-top: 21px;
}

.bk-shipping-timing__factor {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-shipping-timing__factor-check {
    display: flex;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-shipping-timing__factor-check svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-timing__factor > div {
    min-width: 0;
}

.bk-shipping-timing__factor strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-shipping-timing__factor span {
    display: block;

    color: #7a8799;
    font-size: 9.5px;
    line-height: 1.8;
}

/* =========================================================
   Bottom notice
========================================================= */

.bk-shipping-timing__notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    width: 100%;
    max-width: 1040px;

    margin: 26px auto 0;
    padding: 17px 18px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-shipping-timing__notice-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-shipping-timing__notice-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-timing__notice > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-shipping-timing__notice strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11.5px;
    font-weight: 850;
}

.bk-shipping-timing__notice span {
    display: block;

    color: #6f7f96;
    font-size: 10.2px;
    line-height: 1.9;
}

.bk-shipping-timing__notice-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 43px;
    padding: 0 16px;

    border: 1px solid #1765dc;
    border-radius: 11px;

    background: #1765dc;
    color: #ffffff !important;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-timing__notice-button:hover {
    transform: translateY(-2px);

    background: #1259c6;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.22);
}

.bk-shipping-timing__notice-button svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-shipping-timing {
        padding: 58px 18px 64px;
    }

    .bk-shipping-timing__layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-shipping-timing {
        padding: 45px 12px 52px;
    }

    .bk-shipping-timing__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-shipping-timing__head p {
        font-size: 12.5px;
    }

    .bk-shipping-timing__main-card,
    .bk-shipping-timing__factors {
        padding: 23px 17px 22px;
        border-radius: 20px;
    }

    .bk-shipping-timing__main-icon,
    .bk-shipping-timing__factors-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-shipping-timing__main-head h3,
    .bk-shipping-timing__factors-head h3 {
        font-size: 16px;
    }

    .bk-shipping-timing__row {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        min-height: 0;
        padding: 12px;
    }

    .bk-shipping-timing__row-number {
        width: 38px;
        height: 38px;
    }

    .bk-shipping-timing__row-status {
        grid-column: 2;

        width: fit-content;
        margin-top: 5px;
    }

    .bk-shipping-timing__notice {
        flex-direction: column;
        align-items: stretch;

        padding: 15px;
    }

    .bk-shipping-timing__notice-icon {
        display: none;
    }

    .bk-shipping-timing__notice-button {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — SHIPPING DELIVERY
========================================================= */

.bk-shipping-delivery-wrap,
.bk-shipping-delivery-wrap * {
    box-sizing: border-box;
}

.bk-shipping-delivery-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-shipping-delivery-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-shipping-delivery-wrap .elementor-widget-html,
.bk-shipping-delivery-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-shipping-delivery {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #ffffff 100%
        );
}

.bk-shipping-delivery__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-shipping-delivery__head {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

.bk-shipping-delivery__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-shipping-delivery__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-shipping-delivery__head h2 span {
    color: #1765dc;
}

.bk-shipping-delivery__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Main layout */

.bk-shipping-delivery__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

/* Main cards */

.bk-shipping-delivery__pickup,
.bk-shipping-delivery__checklist {
    min-width: 0;
    padding: 29px 28px 27px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);
}

.bk-shipping-delivery__card-head {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 21px;

    border-bottom: 1px solid #e2eaf4;
}

.bk-shipping-delivery__main-icon {
    display: flex;
    flex: 0 0 59px;
    align-items: center;
    justify-content: center;

    width: 59px;
    height: 59px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.23);
}

.bk-shipping-delivery__main-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-delivery__card-head > div {
    min-width: 0;
}

.bk-shipping-delivery__card-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-shipping-delivery__card-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.65;
}

/* Pickup */

.bk-shipping-delivery__pickup-description {
    margin: 20px 0 0;

    color: #748198;
    font-size: 11.5px;
    line-height: 2;
}

.bk-shipping-delivery__pickup-info {
    display: grid;
    gap: 10px;

    margin-top: 19px;
}

.bk-shipping-delivery__info-row {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 68px;
    padding: 11px 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-shipping-delivery__info-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-shipping-delivery__info-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-delivery__info-row > div {
    min-width: 0;
}

.bk-shipping-delivery__info-row strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-shipping-delivery__info-row span {
    display: block;

    color: #7a8799;
    font-size: 9.5px;
    line-height: 1.8;
}

.bk-shipping-delivery__pickup-notice {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 17px;
    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 14px;

    background: #eaf2ff;
}

.bk-shipping-delivery__pickup-notice svg {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;
    margin-top: 2px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-delivery__pickup-notice span {
    color: #6f7f96;
    font-size: 9.8px;
    line-height: 1.9;
}

/* Checklist */

.bk-shipping-delivery__checklist-items {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.bk-shipping-delivery__check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    min-height: 76px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-shipping-delivery__check-number {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-shipping-delivery__check-item > div {
    min-width: 0;
}

.bk-shipping-delivery__check-item strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-shipping-delivery__check-item span {
    display: block;

    color: #7a8799;
    font-size: 9.5px;
    line-height: 1.8;
}

/* Support bar */

.bk-shipping-delivery__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    width: 100%;
    max-width: 1040px;

    margin: 26px auto 0;
    padding: 17px 18px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-shipping-delivery__support-content {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.bk-shipping-delivery__support-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-shipping-delivery__support-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-delivery__support-content > div {
    min-width: 0;
}

.bk-shipping-delivery__support strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11.5px;
    font-weight: 850;
}

.bk-shipping-delivery__support span {
    display: block;

    color: #6f7f96;
    font-size: 10.2px;
    line-height: 1.9;
}

.bk-shipping-delivery__support-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

/* Buttons */

.bk-shipping-delivery__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;
    padding: 0 16px;

    border-radius: 11px;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-delivery__button:hover {
    transform: translateY(-2px);
}

.bk-shipping-delivery__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;
}

.bk-shipping-delivery__button--primary:hover {
    background: #1259c6;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.22);
}

.bk-shipping-delivery__button--secondary {
    border: 1px solid #cddcf0;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-shipping-delivery__button--secondary:hover {
    border-color: #b5cae8;
    background: #f6f9fe;
}

/* Tablet */

@media (max-width: 900px) {

    .bk-shipping-delivery {
        padding: 58px 18px 64px;
    }

    .bk-shipping-delivery__layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-shipping-delivery {
        padding: 45px 12px 52px;
    }

    .bk-shipping-delivery__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-shipping-delivery__head p {
        font-size: 12.5px;
    }

    .bk-shipping-delivery__pickup,
    .bk-shipping-delivery__checklist {
        padding: 23px 17px 22px;
        border-radius: 20px;
    }

    .bk-shipping-delivery__main-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-shipping-delivery__card-head h3 {
        font-size: 16px;
    }

    .bk-shipping-delivery__support {
        flex-direction: column;
        align-items: stretch;

        padding: 15px;
    }

    .bk-shipping-delivery__support-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-shipping-delivery__button {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — SHIPPING FAQ
========================================================= */

.bk-shipping-faq-wrap,
.bk-shipping-faq-wrap * {
    box-sizing: border-box;
}

.bk-shipping-faq-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-shipping-faq-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-shipping-faq-wrap .elementor-widget-html,
.bk-shipping-faq-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   Section
========================================================= */

.bk-shipping-faq {
    width: 100%;
    margin: 0;
    padding: 72px 22px 88px;

    background: #ffffff;
}

.bk-shipping-faq__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* =========================================================
   Heading
========================================================= */

.bk-shipping-faq__head {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

.bk-shipping-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-shipping-faq__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-shipping-faq__head h2 span {
    color: #1765dc;
}

.bk-shipping-faq__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* =========================================================
   FAQ list
========================================================= */

.bk-shipping-faq__list {
    display: grid;
    gap: 10px;

    width: 100%;
    max-width: 1080px;

    margin: 38px auto 0;
}

.bk-shipping-faq__item {
    width: 100%;
    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(24, 63, 119, 0.045);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-faq__item[open] {
    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 16px 35px rgba(24, 63, 119, 0.075);
}

/* =========================================================
   FAQ summary
========================================================= */

.bk-shipping-faq__item summary {
    display: flex;
    align-items: center;
    gap: 13px;

    width: 100%;
    min-height: 70px;
    padding: 14px 17px;

    color: inherit;
    list-style: none;

    cursor: pointer;
}

.bk-shipping-faq__item summary::-webkit-details-marker {
    display: none;
}

.bk-shipping-faq__number {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-shipping-faq__item summary strong {
    flex: 1 1 auto;
    min-width: 0;

    color: #1c3c66;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.9;
}

.bk-shipping-faq__toggle {
    display: flex;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 11px;

    background: #f2f6fc;
    color: #1765dc;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.bk-shipping-faq__toggle svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-faq__item[open]
.bk-shipping-faq__toggle {
    transform: rotate(180deg);
    background: #e5efff;
}

/* =========================================================
   FAQ answer
========================================================= */

.bk-shipping-faq__answer {
    padding: 0 70px 19px 70px;
}

.bk-shipping-faq__answer p {
    margin: 0;
    padding-top: 15px;

    border-top: 1px solid #e5ebf3;

    color: #748198;
    font-size: 11.5px;
    line-height: 2.15;
}

.bk-shipping-faq__inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 13px;

    color: #1765dc !important;

    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-shipping-faq__inline-link svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.2s ease;
}

.bk-shipping-faq__inline-link:hover svg {
    transform: translateX(-3px);
}

.bk-shipping-faq__address {
    display: flex;
    align-items: center;
    gap: 8px;

    width: fit-content;
    margin-top: 13px;
    padding: 10px 12px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 12px;

    background: #f3f7fd;

    color: #49617f;
    font-size: 10px;
    line-height: 1.8;
}

.bk-shipping-faq__address svg {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   Support CTA
========================================================= */

.bk-shipping-faq__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: 100%;
    max-width: 1180px;

    margin: 36px auto 0;
    padding: 28px 30px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.12);
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.12),
            transparent 39%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f3f8ff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);
}

.bk-shipping-faq__support-content {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 0;
}

.bk-shipping-faq__support-icon {
    display: flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.24);
}

.bk-shipping-faq__support-icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-faq__support-content > div {
    min-width: 0;
}

.bk-shipping-faq__support-label {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-shipping-faq__support h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-shipping-faq__support p {
    margin: 5px 0 0;

    color: #748198;
    font-size: 10.5px;
    line-height: 1.9;
}

/* =========================================================
   Support actions
========================================================= */

.bk-shipping-faq__support-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.bk-shipping-faq__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 45px;
    padding: 0 17px;

    border-radius: 12px;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-shipping-faq__button:hover {
    transform: translateY(-2px);
}

.bk-shipping-faq__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-shipping-faq__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.20);
}

.bk-shipping-faq__button--primary:hover {
    background: #1259c6;

    box-shadow:
        0 13px 27px rgba(23, 101, 220, 0.25);
}

.bk-shipping-faq__button--secondary {
    border: 1px solid #d2deef;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-shipping-faq__button--secondary:hover {
    border-color: #b9cee9;
    background: #f6f9fe;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {

    .bk-shipping-faq {
        padding: 58px 18px 70px;
    }

    .bk-shipping-faq__support {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-shipping-faq__support-actions {
        justify-content: flex-start;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .bk-shipping-faq {
        padding: 45px 12px 58px;
    }

    .bk-shipping-faq__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-shipping-faq__head p {
        font-size: 12.5px;
    }

    .bk-shipping-faq__list {
        margin-top: 29px;
    }

    .bk-shipping-faq__item summary {
        align-items: flex-start;
        gap: 10px;

        min-height: 64px;
        padding: 13px 12px;
    }

    .bk-shipping-faq__number {
        flex-basis: 35px;

        width: 35px;
        height: 35px;
    }

    .bk-shipping-faq__item summary strong {
        font-size: 11.5px;
    }

    .bk-shipping-faq__toggle {
        flex-basis: 32px;

        width: 32px;
        height: 32px;
    }

    .bk-shipping-faq__answer {
        padding: 0 57px 17px 12px;
    }

    .bk-shipping-faq__support {
        gap: 21px;
        padding: 23px 18px;

        border-radius: 20px;
    }

    .bk-shipping-faq__support-content {
        align-items: flex-start;
    }

    .bk-shipping-faq__support-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .bk-shipping-faq__support-icon svg {
        width: 26px;
        height: 26px;
    }

    .bk-shipping-faq__support h3 {
        font-size: 16px;
    }

    .bk-shipping-faq__support-actions {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
    }

    .bk-shipping-faq__button {
        width: 100%;
    }
}

/* =========================================================
   Small mobile
========================================================= */

@media (max-width: 420px) {

    .bk-shipping-faq__number {
        display: none;
    }

    .bk-shipping-faq__answer {
        padding-right: 13px;
    }
}

/* =========================================================
   BEHZADKALA — RETURN POLICY HERO
========================================================= */

.bk-return-hero-wrap,
.bk-return-hero-wrap * {
    box-sizing: border-box;
}

.bk-return-hero-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-hero-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-hero-wrap .elementor-widget-html,
.bk-return-hero-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-hero {
    width: 100%;
    margin: 0;
    padding: 32px 22px 38px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8ff 100%
        );
}

.bk-return-hero__inner {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(370px, 0.92fr);

    align-items: center;
    gap: 58px;

    width: 100%;
    max-width: 1460px;
    min-height: 590px;

    margin: 0 auto;
    padding: 58px 68px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 6% 10%,
            rgba(31, 105, 225, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 96% 92%,
            rgba(31, 105, 225, 0.08),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 25px 65px rgba(18, 56, 110, 0.08);
}

/* Content */

.bk-return-hero__content {
    position: relative;
    z-index: 3;

    min-width: 0;
    text-align: right;
}

.bk-return-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-hero__title {
    max-width: 790px;
    margin: 0;

    color: #0b2855;
    font-size: clamp(38px, 3.4vw, 50px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.9px;
}

.bk-return-hero__title span {
    display: block;
    color: #1765dc;
}

.bk-return-hero__description {
    max-width: 760px;
    margin: 19px 0 0;

    color: #68778e;
    font-size: 14.5px;
    line-height: 2.15;
}

/* Features */

.bk-return-hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 720px;

    margin-top: 25px;
}

.bk-return-hero__feature {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
    min-height: 70px;
    padding: 12px 13px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: rgba(248, 251, 255, 0.94);
}

.bk-return-hero__feature-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #e5efff;
    color: #1765dc;
}

.bk-return-hero__feature-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-hero__feature > div {
    min-width: 0;
}

.bk-return-hero__feature strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 12px;
    font-weight: 800;
}

.bk-return-hero__feature span {
    display: block;

    color: #8290a4;
    font-size: 9.5px;
    line-height: 1.75;
}

/* Buttons */

.bk-return-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin-top: 25px;
}

.bk-return-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-hero__button:hover {
    transform: translateY(-2px);
}

.bk-return-hero__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-hero__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-return-hero__button--primary:hover {
    border-color: #1259c6;
    background: #1259c6;

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.28);
}

.bk-return-hero__button--secondary {
    border: 1px solid #d7e3f5;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-return-hero__button--secondary:hover {
    border-color: #bdd2f1;
    background: #f4f8ff;
}

/* LCD warning */

.bk-return-hero__lcd-warning {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    width: 100%;
    max-width: 720px;

    margin-top: 17px;
    padding: 13px 14px;

    border: 1px solid rgba(225, 144, 20, 0.20);
    border-radius: 15px;

    background: #fff8e9;
}

.bk-return-hero__lcd-warning-icon {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #ffffff;
    color: #d8870b;
}

.bk-return-hero__lcd-warning-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-hero__lcd-warning > div {
    min-width: 0;
}

.bk-return-hero__lcd-warning strong {
    display: block;
    margin-bottom: 3px;

    color: #765017;
    font-size: 10.8px;
    font-weight: 850;
}

.bk-return-hero__lcd-warning span {
    display: block;

    color: #8a6c3b;
    font-size: 9.7px;
    line-height: 1.85;
}

/* Visual */

.bk-return-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 450px;
}

.bk-return-hero__glow {
    position: absolute;
    inset: 24px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.18) 0%,
            rgba(31, 105, 225, 0.06) 47%,
            transparent 72%
        );

    filter: blur(9px);
}

/* Process card */

.bk-return-card {
    position: relative;
    z-index: 2;

    width: min(100%, 410px);
    padding: 29px 27px 24px;

    border: 1px solid rgba(31, 105, 225, 0.13);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 247, 255, 0.97)
        );

    box-shadow:
        0 26px 58px rgba(26, 67, 126, 0.14);
}

.bk-return-card__header {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 21px;
    border-bottom: 1px solid #e1e9f4;
}

.bk-return-card__header-icon {
    display: flex;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.23);
}

.bk-return-card__header-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-card__header > div {
    min-width: 0;
}

.bk-return-card__header span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-return-card__header strong {
    display: block;

    color: #0b2855;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.6;
}

/* Steps */

.bk-return-card__steps {
    position: relative;

    display: grid;
    gap: 18px;

    margin-top: 22px;
}

.bk-return-card__steps::before {
    position: absolute;
    top: 12px;
    right: 11px;
    bottom: 12px;

    width: 2px;

    background: #e1e8f2;

    content: "";
}

.bk-return-card__step {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bk-return-card__step-icon {
    display: flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 3px solid #e1e8f2;
    border-radius: 50%;

    background: #ffffff;
}

.bk-return-card__step-icon svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-card__step.is-complete
.bk-return-card__step-icon {
    border-color: #1765dc;
    background: #1765dc;
    color: #ffffff;
}

.bk-return-card__step.is-current
.bk-return-card__step-icon {
    border-color: #1765dc;
    background: #ffffff;

    box-shadow:
        0 0 0 5px rgba(23, 101, 220, 0.12);
}

.bk-return-card__step.is-current
.bk-return-card__step-icon::after {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1765dc;

    content: "";
}

.bk-return-card__step > div {
    min-width: 0;
}

.bk-return-card__step strong {
    display: block;
    margin-bottom: 2px;

    color: #17365f;
    font-size: 11.5px;
    font-weight: 800;
}

.bk-return-card__step span {
    display: block;

    color: #8490a2;
    font-size: 9.5px;
    line-height: 1.75;
}

/* Refund notice */

.bk-return-card__refund {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 22px;
    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 15px;

    background: #eaf2ff;
}

.bk-return-card__refund-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-card__refund-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-card__refund > div {
    min-width: 0;
}

.bk-return-card__refund strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 11px;
    font-weight: 800;
}

.bk-return-card__refund span {
    display: block;

    color: #718198;
    font-size: 9.5px;
    line-height: 1.7;
}

/* Medium desktop */

@media (max-width: 1200px) {

    .bk-return-hero__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.86fr);

        gap: 38px;
        padding: 50px 42px;
    }

    .bk-return-hero__title {
        font-size: 40px;
    }
}

/* Tablet */

@media (max-width: 900px) {

    .bk-return-hero {
        padding: 24px 16px 32px;
    }

    .bk-return-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;

        min-height: 0;
        padding: 46px 36px;

        border-radius: 27px;
    }

    .bk-return-hero__visual {
        max-width: 570px;
        min-height: 0;
        margin: 0 auto;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-hero {
        padding: 14px 11px 26px;
    }

    .bk-return-hero__inner {
        gap: 34px;
        padding: 33px 18px 35px;

        border-radius: 22px;
    }

    .bk-return-hero__content {
        text-align: center;
    }

    .bk-return-hero__title {
        font-size: 29px;
        line-height: 1.65;
        letter-spacing: -0.5px;
    }

    .bk-return-hero__description {
        margin-top: 15px;

        font-size: 13px;
        line-height: 2.05;
    }

    .bk-return-hero__features {
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 22px;
    }

    .bk-return-hero__feature,
    .bk-return-hero__lcd-warning {
        text-align: right;
    }

    .bk-return-hero__actions {
        justify-content: center;
        margin-top: 23px;
    }

    .bk-return-hero__button {
        flex: 1 1 100%;

        width: 100%;
        min-height: 49px;
    }

    .bk-return-card {
        width: 100%;
        padding: 25px 18px 21px;

        text-align: right;
    }
}

/* =========================================================
   BEHZADKALA — RETURN CONDITIONS
========================================================= */

.bk-return-conditions-wrap,
.bk-return-conditions-wrap * {
    box-sizing: border-box;
}

.bk-return-conditions-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-conditions-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-conditions-wrap .elementor-widget-html,
.bk-return-conditions-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-conditions {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background: #ffffff;
}

.bk-return-conditions__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-return-conditions__head {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bk-return-conditions__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-conditions__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-return-conditions__head h2 span {
    color: #1765dc;
}

.bk-return-conditions__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Grid */

.bk-return-conditions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 15px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

/* Cards */

.bk-return-condition-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 275px;
    padding: 24px 22px 22px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 16px 38px rgba(24, 63, 119, 0.06);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-condition-card:hover {
    transform: translateY(-4px);

    border-color: rgba(23, 101, 220, 0.21);

    box-shadow:
        0 23px 48px rgba(24, 63, 119, 0.10);
}

.bk-return-condition-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bk-return-condition-card__icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-return-condition-card__icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-condition-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 28px;
    padding: 0 10px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-return-condition-card h3 {
    margin: 20px 0 0;

    color: #12335e;
    font-size: 15.5px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-return-condition-card p {
    margin: 8px 0 0;

    color: #748198;
    font-size: 11px;
    line-height: 2;
}

.bk-return-condition-card__tag {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    margin-top: auto;
    padding: 6px 10px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9px;
    font-weight: 750;
    line-height: 1.7;
}

/* Rules */

.bk-return-conditions__rules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;

    width: 100%;
    max-width: 1080px;

    margin: 27px auto 0;
}

.bk-return-conditions__rule {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    min-width: 0;
    padding: 16px 17px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 17px;

    background: #f5f9ff;
}

.bk-return-conditions__rule-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-conditions__rule-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-conditions__rule > div {
    min-width: 0;
}

.bk-return-conditions__rule strong {
    display: block;
    margin-bottom: 3px;

    color: #193a65;
    font-size: 11px;
    font-weight: 850;
}

.bk-return-conditions__rule span {
    display: block;

    color: #748198;
    font-size: 9.8px;
    line-height: 1.9;
}

/* Bottom notice */

.bk-return-conditions__bottom-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: 100%;
    max-width: 900px;

    margin: 17px auto 0;
    padding: 16px 17px;

    border: 1px solid rgba(225, 144, 20, 0.21);
    border-radius: 17px;

    background: #fff8e9;
}

.bk-return-conditions__bottom-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: #ffffff;
    color: #d8870b;
}

.bk-return-conditions__bottom-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-conditions__bottom-note > div {
    min-width: 0;
}

.bk-return-conditions__bottom-note strong {
    display: block;
    margin-bottom: 3px;

    color: #765017;
    font-size: 11px;
    font-weight: 850;
}

.bk-return-conditions__bottom-note span {
    display: block;

    color: #8a6c3b;
    font-size: 9.8px;
    line-height: 1.9;
}

/* Medium desktop */

@media (max-width: 1100px) {

    .bk-return-conditions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Tablet */

@media (max-width: 900px) {

    .bk-return-conditions {
        padding: 58px 18px 64px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-conditions {
        padding: 45px 12px 52px;
    }

    .bk-return-conditions__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-return-conditions__head p {
        font-size: 12.5px;
    }

    .bk-return-conditions__grid {
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 29px;
    }

    .bk-return-condition-card {
        min-height: 0;
        padding: 21px 18px;
    }

    .bk-return-condition-card__icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .bk-return-condition-card h3 {
        margin-top: 17px;
    }

    .bk-return-condition-card__tag {
        margin-top: 17px;
    }

    .bk-return-conditions__rules {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bk-return-conditions__bottom-note {
        padding: 15px;
    }
}

/* =========================================================
   BEHZADKALA — RETURN PRODUCTS RULES
========================================================= */

.bk-return-products-wrap,
.bk-return-products-wrap * {
    box-sizing: border-box;
}

.bk-return-products-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-products-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-products-wrap .elementor-widget-html,
.bk-return-products-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-products {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #ffffff 100%
        );
}

.bk-return-products__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-return-products__head {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.bk-return-products__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-products__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-return-products__head h2 span {
    color: #1765dc;
}

.bk-return-products__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Comparison */

.bk-return-products__comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

.bk-return-products__panel {
    min-width: 0;
    padding: 28px 27px 26px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.07);
}

.bk-return-products__panel--accepted {
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(23, 101, 220, 0.09),
            transparent 38%
        ),
        #ffffff;
}

.bk-return-products__panel--rejected {
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(217, 110, 38, 0.09),
            transparent 38%
        ),
        #ffffff;
}

.bk-return-products__panel-head {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 20px;
    border-bottom: 1px solid #e3eaf3;
}

.bk-return-products__panel-icon {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;
}

.bk-return-products__panel--rejected
.bk-return-products__panel-icon {
    background:
        linear-gradient(
            145deg,
            #dd7b27,
            #efaa52
        );
}

.bk-return-products__panel-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__panel-head > div {
    min-width: 0;
}

.bk-return-products__panel-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-return-products__panel--rejected
.bk-return-products__panel-head span {
    color: #c66c22;
}

.bk-return-products__panel-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

/* Lists */

.bk-return-products__list {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.bk-return-products__list-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    min-height: 74px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.82);
}

.bk-return-products__check,
.bk-return-products__cross {
    display: flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 11px;
}

.bk-return-products__check {
    background: #e8f1ff;
    color: #1765dc;
}

.bk-return-products__cross {
    background: #fff0e4;
    color: #ce7429;
}

.bk-return-products__check svg,
.bk-return-products__cross svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__list-item > div {
    min-width: 0;
}

.bk-return-products__list-item strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 10.8px;
    font-weight: 850;
}

.bk-return-products__list-item span {
    display: block;

    color: #7a8799;
    font-size: 9.6px;
    line-height: 1.85;
}

/* LCD section */

.bk-return-products__lcd {
    width: 100%;
    max-width: 1180px;

    margin: 24px auto 0;
    padding: 29px 28px 27px;

    border: 1px solid rgba(217, 137, 11, 0.21);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(232, 162, 51, 0.13),
            transparent 37%
        ),
        linear-gradient(
            145deg,
            #fffdf7,
            #fff8e9
        );

    box-shadow:
        0 18px 44px rgba(112, 76, 25, 0.08);
}

.bk-return-products__lcd-head {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(209, 151, 66, 0.21);
}

.bk-return-products__lcd-icon {
    display: flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #d9850b,
            #efab45
        );

    color: #ffffff;

    box-shadow:
        0 12px 26px rgba(194, 123, 18, 0.22);
}

.bk-return-products__lcd-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__lcd-head > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-return-products__lcd-label {
    display: block;
    margin-bottom: 3px;

    color: #c67508;
    font-size: 10px;
    font-weight: 800;
}

.bk-return-products__lcd-head h3 {
    margin: 0;

    color: #674514;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-products__lcd-head p {
    max-width: 760px;
    margin: 5px 0 0;

    color: #8a6c3b;
    font-size: 10.5px;
    line-height: 1.9;
}

.bk-return-products__lcd-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-height: 33px;
    padding: 0 13px;

    border: 1px solid rgba(203, 127, 12, 0.20);
    border-radius: 100px;

    background: #ffffff;
    color: #bd7208;

    font-size: 9.5px;
    font-weight: 850;
}

.bk-return-products__lcd-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;

    margin-top: 21px;
}

.bk-return-products__lcd-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 225px;
    padding: 19px 18px;

    border: 1px solid rgba(208, 145, 53, 0.16);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.82);
}

.bk-return-products__lcd-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 27px;

    border-radius: 100px;

    background: #fff1d7;
    color: #c47508;

    font-size: 9px;
    font-weight: 850;
}

.bk-return-products__lcd-card h4 {
    margin: 16px 0 0;

    color: #6f4a17;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-return-products__lcd-card p {
    margin: 7px 0 0;

    color: #8d7043;
    font-size: 9.8px;
    line-height: 1.9;
}

.bk-return-products__lcd-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;
    margin-top: auto;
    padding-top: 16px;

    color: #c47508 !important;

    font-size: 10px;
    font-weight: 850;
    text-decoration: none !important;
}

.bk-return-products__lcd-button svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__professional-tag,
.bk-return-products__danger-tag {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    margin-top: auto;
    padding: 6px 10px;

    border-radius: 100px;

    font-size: 9px;
    font-weight: 800;
}

.bk-return-products__professional-tag {
    background: #e8f1ff;
    color: #1765dc;
}

.bk-return-products__danger-tag {
    background: #ffebe0;
    color: #c25e27;
}

.bk-return-products__lcd-warning {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 14px;
    padding: 14px 15px;

    border: 1px solid rgba(207, 137, 28, 0.16);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.75);
}

.bk-return-products__lcd-warning-icon {
    display: flex;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 12px;

    background: #fff0d4;
    color: #c47508;
}

.bk-return-products__lcd-warning-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__lcd-warning > div {
    min-width: 0;
}

.bk-return-products__lcd-warning strong {
    display: block;
    margin-bottom: 3px;

    color: #765017;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-return-products__lcd-warning span {
    display: block;

    color: #8a6c3b;
    font-size: 9.6px;
    line-height: 1.9;
}

/* Parts cards */

.bk-return-products__parts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;

    width: 100%;
    max-width: 1180px;

    margin: 24px auto 0;
}

.bk-return-products__part-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 350px;
    padding: 24px 22px 22px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 16px 38px rgba(24, 63, 119, 0.06);
}

.bk-return-products__part-head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 18px;

    border-bottom: 1px solid #e3eaf3;
}

.bk-return-products__part-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;
}

.bk-return-products__part-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__part-head > div {
    min-width: 0;
}

.bk-return-products__part-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 750;
}

.bk-return-products__part-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 15.5px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-products__part-card > p {
    margin: 18px 0 0;

    color: #748198;
    font-size: 10.5px;
    line-height: 2;
}

.bk-return-products__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 16px;
}

.bk-return-products__chips span {
    display: inline-flex;
    align-items: center;

    padding: 5px 9px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 8.8px;
    font-weight: 750;
}

.bk-return-products__part-note {
    margin-top: auto;
    padding-top: 16px;

    border-top: 1px solid #e4ebf4;

    color: #6f7f96;
    font-size: 9.4px;
    line-height: 1.9;
}

.bk-return-products__battery-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;

    margin-top: 19px;
}

.bk-return-products__battery-steps span {
    color: #1765dc;
    font-size: 8.6px;
    font-weight: 800;
    white-space: nowrap;
}

.bk-return-products__battery-steps i {
    flex: 1 1 auto;
    height: 1px;

    background: #cedcf0;
}

.bk-return-products__simple-list {
    display: grid;
    gap: 7px;

    margin: 16px 0 0;
    padding: 0;

    list-style: none;
}

.bk-return-products__simple-list li {
    position: relative;

    padding-right: 17px;

    color: #748198;
    font-size: 9.5px;
    line-height: 1.85;
}

.bk-return-products__simple-list li::before {
    position: absolute;
    top: 8px;
    right: 2px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #1765dc;

    content: "";
}

/* After seven days */

.bk-return-products__after-seven {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: 100%;
    max-width: 960px;

    margin: 22px auto 0;
    padding: 16px 17px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-return-products__after-seven-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-products__after-seven-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-products__after-seven > div {
    min-width: 0;
}

.bk-return-products__after-seven strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11px;
    font-weight: 850;
}

.bk-return-products__after-seven span {
    display: block;

    color: #6f7f96;
    font-size: 9.8px;
    line-height: 1.9;
}

/* Tablet */

@media (max-width: 1000px) {

    .bk-return-products__lcd-grid,
    .bk-return-products__parts-grid {
        grid-template-columns: 1fr;
    }

    .bk-return-products__part-card {
        min-height: 0;
    }
}

@media (max-width: 900px) {

    .bk-return-products {
        padding: 58px 18px 64px;
    }

    .bk-return-products__comparison {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-products {
        padding: 45px 12px 52px;
    }

    .bk-return-products__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-return-products__head p {
        font-size: 12.5px;
    }

    .bk-return-products__panel,
    .bk-return-products__lcd {
        padding: 22px 17px;
        border-radius: 20px;
    }

    .bk-return-products__lcd-head {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bk-return-products__lcd-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .bk-return-products__lcd-head h3 {
        font-size: 16px;
    }

    .bk-return-products__lcd-badge {
        margin-right: 67px;
    }

    .bk-return-products__lcd-card {
        min-height: 0;
    }

    .bk-return-products__part-card {
        padding: 21px 18px;
    }

    .bk-return-products__battery-steps {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .bk-return-products__battery-steps i {
        flex-basis: 25px;
    }
}

/* =========================================================
   BEHZADKALA — RETURN PROCESS
========================================================= */

.bk-return-process-wrap,
.bk-return-process-wrap * {
    box-sizing: border-box;
}

.bk-return-process-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-process-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-process-wrap .elementor-widget-html,
.bk-return-process-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-process {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background: #ffffff;
}

.bk-return-process__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-return-process__head {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    text-align: center;
}

.bk-return-process__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-process__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-return-process__head h2 span {
    color: #1765dc;
}

.bk-return-process__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Main layout */

.bk-return-process__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(350px, 0.82fr);

    align-items: start;
    gap: 20px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

/* Timeline */

.bk-return-process__timeline {
    position: relative;

    display: grid;
    gap: 11px;
}

.bk-return-process__timeline::before {
    position: absolute;
    top: 36px;
    right: 58px;
    bottom: 36px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            #1765dc 0%,
            #b8d0f2 75%,
            #e0e8f3 100%
        );

    content: "";
}

.bk-return-process__step {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        42px
        58px
        minmax(0, 1fr);

    align-items: center;
    gap: 13px;

    min-width: 0;
    min-height: 112px;
    padding: 16px 17px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.07),
            transparent 35%
        ),
        #ffffff;

    box-shadow:
        0 13px 34px rgba(24, 63, 119, 0.05);
}

.bk-return-process__step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 28px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9.5px;
    font-weight: 850;
}

.bk-return-process__step-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 6px solid #ffffff;
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.21);
}

.bk-return-process__step-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__step-content {
    min-width: 0;
}

.bk-return-process__step h3 {
    margin: 0;

    color: #163760;
    font-size: 13.5px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-return-process__step p {
    margin: 5px 0 0;

    color: #748198;
    font-size: 9.8px;
    line-height: 1.9;
}

.bk-return-process__step-tag {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    margin-top: 8px;
    padding: 5px 9px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 8.5px;
    font-weight: 750;
}

/* Guide card */

.bk-return-process__guide {
    position: sticky;
    top: 25px;

    min-width: 0;
    padding: 27px 25px 24px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f7faff
        );

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.075);
}

.bk-return-process__guide-head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 19px;

    border-bottom: 1px solid #e2eaf4;
}

.bk-return-process__guide-icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;
}

.bk-return-process__guide-icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__guide-head > div {
    min-width: 0;
}

.bk-return-process__guide-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 750;
}

.bk-return-process__guide-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-process__guide-list {
    display: grid;
    gap: 9px;

    margin-top: 18px;
}

.bk-return-process__guide-item {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 56px;
    padding: 10px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.83);
}

.bk-return-process__guide-check {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-return-process__guide-check svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__guide-item > div {
    min-width: 0;
}

.bk-return-process__guide-item strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10px;
    font-weight: 850;
}

.bk-return-process__guide-item span {
    display: block;

    color: #7a8799;
    font-size: 8.9px;
    line-height: 1.7;
}

/* Address */

.bk-return-process__address {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 14px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 14px;

    background: #eaf2ff;
}

.bk-return-process__address-icon {
    display: flex;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-process__address-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__address > div {
    min-width: 0;
}

.bk-return-process__address strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 10px;
    font-weight: 850;
}

.bk-return-process__address span {
    display: block;

    color: #6f7f96;
    font-size: 9px;
    line-height: 1.7;
}

/* Warning */

.bk-return-process__warning {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 11px;
    padding: 12px;

    border: 1px solid rgba(225, 144, 20, 0.20);
    border-radius: 14px;

    background: #fff8e9;
}

.bk-return-process__warning svg {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;
    margin-top: 1px;

    fill: none;
    stroke: #d8870b;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__warning span {
    color: #8a6c3b;
    font-size: 9.2px;
    line-height: 1.85;
}

/* Contact CTA */

.bk-return-process__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    width: 100%;
    max-width: 1080px;

    margin: 27px auto 0;
    padding: 24px 26px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.10),
            transparent 38%
        ),
        #f5f9ff;
}

.bk-return-process__contact-content {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
}

.bk-return-process__contact-icon {
    display: flex;
    flex: 0 0 59px;
    align-items: center;
    justify-content: center;

    width: 59px;
    height: 59px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-return-process__contact-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__contact-content > div {
    min-width: 0;
}

.bk-return-process__contact-label {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 750;
}

.bk-return-process__contact h3 {
    margin: 0;

    color: #0b2855;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-process__contact p {
    margin: 4px 0 0;

    color: #748198;
    font-size: 9.8px;
    line-height: 1.85;
}

.bk-return-process__contact-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 9px;
}

/* Buttons */

.bk-return-process__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 45px;
    padding: 0 17px;

    border-radius: 12px;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-process__button:hover {
    transform: translateY(-2px);
}

.bk-return-process__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-process__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.20);
}

.bk-return-process__button--primary:hover {
    background: #1259c6;
}

.bk-return-process__button--secondary {
    border: 1px solid #d2deef;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-return-process__button--secondary:hover {
    border-color: #b9cee9;
    background: #f6f9fe;
}

/* Tablet */

@media (max-width: 900px) {

    .bk-return-process {
        padding: 58px 18px 64px;
    }

    .bk-return-process__layout {
        grid-template-columns: 1fr;
        max-width: 780px;
    }

    .bk-return-process__guide {
        position: static;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-process {
        padding: 45px 12px 52px;
    }

    .bk-return-process__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-return-process__head p {
        font-size: 12.5px;
    }

    .bk-return-process__step {
        grid-template-columns:
            35px
            49px
            minmax(0, 1fr);

        gap: 9px;

        min-height: 0;
        padding: 14px 12px;
    }

    .bk-return-process__timeline::before {
        right: 50px;
    }

    .bk-return-process__step-number {
        width: 35px;
    }

    .bk-return-process__step-icon {
        width: 49px;
        height: 49px;

        border-radius: 15px;
    }

    .bk-return-process__step-icon svg {
        width: 23px;
        height: 23px;
    }

    .bk-return-process__step h3 {
        font-size: 12px;
    }

    .bk-return-process__guide {
        padding: 22px 17px;
        border-radius: 20px;
    }

    .bk-return-process__contact {
        flex-direction: column;
        align-items: stretch;

        padding: 21px 17px;
    }

    .bk-return-process__contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-return-process__button {
        width: 100%;
    }
}

@media (max-width: 420px) {

    .bk-return-process__step {
        grid-template-columns:
            45px
            minmax(0, 1fr);
    }

    .bk-return-process__step-number {
        display: none;
    }

    .bk-return-process__timeline::before {
        right: 34px;
    }
}

/* =========================================================
   BEHZADKALA — RETURN COSTS & REFUND
========================================================= */

.bk-return-refund-wrap,
.bk-return-refund-wrap * {
    box-sizing: border-box;
}

.bk-return-refund-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-refund-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-refund-wrap .elementor-widget-html,
.bk-return-refund-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-refund {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #ffffff 100%
        );
}

.bk-return-refund__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-return-refund__head {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    text-align: center;
}

.bk-return-refund__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-refund__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-return-refund__head h2 span {
    color: #1765dc;
}

.bk-return-refund__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Cost grid */

.bk-return-refund__cost-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

.bk-return-refund__cost-card {
    min-width: 0;
    padding: 28px 27px 25px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.07);
}

.bk-return-refund__cost-card--store {
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(23, 101, 220, 0.09),
            transparent 38%
        ),
        #ffffff;
}

.bk-return-refund__cost-card--customer {
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(217, 137, 11, 0.09),
            transparent 38%
        ),
        #ffffff;
}

/* Cost card heading */

.bk-return-refund__cost-head {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e3eaf3;
}

.bk-return-refund__cost-icon {
    display: flex;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-return-refund__cost-card--customer
.bk-return-refund__cost-icon {
    background:
        linear-gradient(
            145deg,
            #d9850b,
            #efab45
        );

    box-shadow:
        0 11px 25px rgba(194, 123, 18, 0.20);
}

.bk-return-refund__cost-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-refund__cost-head > div {
    min-width: 0;
}

.bk-return-refund__cost-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-return-refund__cost-card--customer
.bk-return-refund__cost-head span {
    color: #c67508;
}

.bk-return-refund__cost-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

/* Cost list */

.bk-return-refund__cost-list {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.bk-return-refund__cost-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    min-height: 75px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-return-refund__check,
.bk-return-refund__customer-mark {
    display: flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 11px;
}

.bk-return-refund__check {
    background: #e8f1ff;
    color: #1765dc;
}

.bk-return-refund__customer-mark {
    background: #fff1da;
    color: #c8790a;
}

.bk-return-refund__check svg,
.bk-return-refund__customer-mark svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-refund__cost-item > div {
    min-width: 0;
}

.bk-return-refund__cost-item strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 10.8px;
    font-weight: 850;
}

.bk-return-refund__cost-item span {
    display: block;

    color: #7a8799;
    font-size: 9.6px;
    line-height: 1.85;
}

/* Cost note */

.bk-return-refund__cost-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 15px;
    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 14px;

    background: #f3f7fd;
}

.bk-return-refund__cost-card--customer
.bk-return-refund__cost-note {
    border-color: rgba(209, 143, 43, 0.16);
    background: #fff8e9;
}

.bk-return-refund__cost-note svg {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;
    margin-top: 2px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-refund__cost-card--customer
.bk-return-refund__cost-note svg {
    stroke: #c8790a;
}

.bk-return-refund__cost-note span {
    color: #6f7f96;
    font-size: 9.6px;
    line-height: 1.9;
}

.bk-return-refund__cost-card--customer
.bk-return-refund__cost-note span {
    color: #8a6c3b;
}

/* Refund payment card */

.bk-return-refund__payment {
    width: 100%;
    max-width: 1180px;

    margin: 24px auto 0;
    padding: 29px 28px 27px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.10),
            transparent 37%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f5f9ff
        );

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.075);
}

.bk-return-refund__payment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e1e9f4;
}

.bk-return-refund__payment-title {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
}

.bk-return-refund__payment-icon {
    display: flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.23);
}

.bk-return-refund__payment-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-refund__payment-title > div {
    min-width: 0;
}

.bk-return-refund__payment-title span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-return-refund__payment-title h3 {
    margin: 0;

    color: #0b2855;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-refund__payment-title p {
    max-width: 710px;
    margin: 5px 0 0;

    color: #748198;
    font-size: 10.3px;
    line-height: 1.9;
}

.bk-return-refund__payment-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 15px;

    border: 1px solid rgba(23, 101, 220, 0.13);
    border-radius: 100px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

/* Payment steps */

.bk-return-refund__payment-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-top: 24px;
}

.bk-return-refund__payment-step {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 0;
}

.bk-return-refund__payment-number {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-return-refund__payment-step > div {
    min-width: 0;
}

.bk-return-refund__payment-step strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10px;
    font-weight: 850;
}

.bk-return-refund__payment-step span {
    display: block;

    color: #7a8799;
    font-size: 8.7px;
    line-height: 1.7;
}

.bk-return-refund__payment-line {
    flex: 1 1 45px;
    min-width: 25px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #cfddf0,
            #1765dc,
            #cfddf0
        );
}

/* Payment info */

.bk-return-refund__payment-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;

    margin-top: 23px;
}

.bk-return-refund__payment-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    min-width: 0;
    padding: 13px;

    border: 1px solid rgba(31, 105, 225, 0.08);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.85);
}

.bk-return-refund__payment-info-item > span {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-return-refund__payment-info-item svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-refund__payment-info-item > div {
    min-width: 0;
}

.bk-return-refund__payment-info-item strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 10px;
    font-weight: 850;
}

.bk-return-refund__payment-info-item p {
    margin: 0;

    color: #7a8799;
    font-size: 9px;
    line-height: 1.8;
}

/* Bottom notice */

.bk-return-refund__notice {
    display: flex;
    align-items: center;
    gap: 13px;

    width: 100%;
    max-width: 1040px;

    margin: 22px auto 0;
    padding: 16px 17px;

    border: 1px solid rgba(225, 144, 20, 0.20);
    border-radius: 17px;

    background: #fff8e9;
}

.bk-return-refund__notice-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: #ffffff;
    color: #d8870b;
}

.bk-return-refund__notice-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-refund__notice > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-return-refund__notice strong {
    display: block;
    margin-bottom: 3px;

    color: #765017;
    font-size: 11px;
    font-weight: 850;
}

.bk-return-refund__notice span {
    display: block;

    color: #8a6c3b;
    font-size: 9.7px;
    line-height: 1.9;
}

.bk-return-refund__notice-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 42px;
    padding: 0 15px;

    border: 1px solid #d8870b;
    border-radius: 11px;

    background: #ffffff;
    color: #b86f08 !important;

    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.bk-return-refund__notice-button:hover {
    transform: translateY(-2px);
    background: #fff3d9;
}

.bk-return-refund__notice-button svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Tablet */

@media (max-width: 900px) {

    .bk-return-refund {
        padding: 58px 18px 64px;
    }

    .bk-return-refund__cost-grid {
        grid-template-columns: 1fr;
        max-width: 780px;
    }

    .bk-return-refund__payment-steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .bk-return-refund__payment-line {
        display: none;
    }

    .bk-return-refund__payment-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-refund {
        padding: 45px 12px 52px;
    }

    .bk-return-refund__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-return-refund__head p {
        font-size: 12.5px;
    }

    .bk-return-refund__cost-card,
    .bk-return-refund__payment {
        padding: 22px 17px;
        border-radius: 20px;
    }

    .bk-return-refund__cost-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-return-refund__cost-head h3 {
        font-size: 16px;
    }

    .bk-return-refund__payment-head {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bk-return-refund__payment-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .bk-return-refund__payment-title h3 {
        font-size: 16px;
    }

    .bk-return-refund__payment-badge {
        margin-right: 66px;
    }

    .bk-return-refund__payment-steps {
        grid-template-columns: 1fr;
    }

    .bk-return-refund__notice {
        flex-direction: column;
        align-items: stretch;

        padding: 15px;
    }

    .bk-return-refund__notice-icon {
        display: none;
    }

    .bk-return-refund__notice-button {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — RETURN EVIDENCE
========================================================= */

.bk-return-evidence-wrap,
.bk-return-evidence-wrap * {
    box-sizing: border-box;
}

.bk-return-evidence-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-evidence-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-evidence-wrap .elementor-widget-html,
.bk-return-evidence-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-evidence {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background: #ffffff;
}

.bk-return-evidence__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-return-evidence__head {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    text-align: center;
}

.bk-return-evidence__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-evidence__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-return-evidence__head h2 span {
    color: #1765dc;
}

.bk-return-evidence__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* اقدامات فوری */

.bk-return-evidence__actions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

.bk-return-evidence__action-card {
    position: relative;

    min-width: 0;
    min-height: 235px;
    padding: 22px 20px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 15px 37px rgba(24, 63, 119, 0.06);
}

.bk-return-evidence__action-number {
    position: absolute;
    top: 18px;
    left: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 27px;
    padding: 0 9px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9px;
    font-weight: 850;
}

.bk-return-evidence__action-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.21);
}

.bk-return-evidence__action-icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-evidence__action-card h3 {
    margin: 20px 0 0;

    color: #173760;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-return-evidence__action-card p {
    margin: 8px 0 0;

    color: #748198;
    font-size: 10.2px;
    line-height: 2;
}

/* Layout */

.bk-return-evidence__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 24px auto 0;
}

.bk-return-evidence__problems,
.bk-return-evidence__documents {
    min-width: 0;
    padding: 28px 27px 26px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.07);
}

/* Card headings */

.bk-return-evidence__card-head {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e3eaf3;
}

.bk-return-evidence__card-icon {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-return-evidence__card-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-evidence__card-head > div {
    min-width: 0;
}

.bk-return-evidence__card-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-return-evidence__card-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

/* Problems */

.bk-return-evidence__problem-list,
.bk-return-evidence__documents-list {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.bk-return-evidence__problem {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    min-height: 74px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-return-evidence__problem-icon {
    display: flex;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-return-evidence__problem-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-evidence__problem > div {
    min-width: 0;
}

.bk-return-evidence__problem strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 10.7px;
    font-weight: 850;
}

.bk-return-evidence__problem span {
    display: block;

    color: #7a8799;
    font-size: 9.5px;
    line-height: 1.85;
}

/* Documents */

.bk-return-evidence__document {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 62px;
    padding: 11px 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-return-evidence__document-number {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 9.5px;
    font-weight: 850;
}

.bk-return-evidence__document > div {
    min-width: 0;
}

.bk-return-evidence__document strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10.3px;
    font-weight: 850;
}

.bk-return-evidence__document span {
    display: block;

    color: #7a8799;
    font-size: 9px;
    line-height: 1.75;
}

/* Video note */

.bk-return-evidence__video-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-top: 14px;
    padding: 13px 14px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 14px;

    background: #eaf2ff;
}

.bk-return-evidence__video-icon {
    display: flex;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-evidence__video-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-evidence__video-note > div {
    min-width: 0;
}

.bk-return-evidence__video-note strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-return-evidence__video-note span {
    display: block;

    color: #6f7f96;
    font-size: 9.4px;
    line-height: 1.85;
}

/* LCD note */

.bk-return-evidence__lcd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    width: 100%;
    max-width: 1180px;

    margin: 24px auto 0;
    padding: 23px 25px;

    border: 1px solid rgba(217, 137, 11, 0.21);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(232, 162, 51, 0.12),
            transparent 39%
        ),
        #fff8e9;
}

.bk-return-evidence__lcd-content {
    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 0;
}

.bk-return-evidence__lcd-icon {
    display: flex;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #d9850b,
            #efab45
        );

    color: #ffffff;
}

.bk-return-evidence__lcd-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-evidence__lcd-content > div {
    min-width: 0;
}

.bk-return-evidence__lcd-label {
    display: block;
    margin-bottom: 3px;

    color: #c67508;
    font-size: 9.5px;
    font-weight: 800;
}

.bk-return-evidence__lcd h3 {
    margin: 0;

    color: #674514;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-evidence__lcd p {
    max-width: 690px;
    margin: 4px 0 0;

    color: #8a6c3b;
    font-size: 9.7px;
    line-height: 1.9;
}

.bk-return-evidence__lcd-rules {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;

    max-width: 350px;
}

.bk-return-evidence__lcd-rules span {
    display: inline-flex;
    align-items: center;

    padding: 6px 9px;

    border: 1px solid rgba(205, 134, 27, 0.15);
    border-radius: 100px;

    background: #ffffff;
    color: #b86f08;

    font-size: 8.5px;
    font-weight: 750;
}

/* Support */

.bk-return-evidence__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    width: 100%;
    max-width: 1040px;

    margin: 23px auto 0;
    padding: 17px 18px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-return-evidence__support-content {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.bk-return-evidence__support-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-evidence__support-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-evidence__support-content > div {
    min-width: 0;
}

.bk-return-evidence__support strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11px;
    font-weight: 850;
}

.bk-return-evidence__support span {
    display: block;

    color: #6f7f96;
    font-size: 9.8px;
    line-height: 1.9;
}

.bk-return-evidence__support-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

/* Buttons */

.bk-return-evidence__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;
    padding: 0 16px;

    border-radius: 11px;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-evidence__button:hover {
    transform: translateY(-2px);
}

.bk-return-evidence__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;
}

.bk-return-evidence__button--primary:hover {
    background: #1259c6;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.22);
}

.bk-return-evidence__button--secondary {
    border: 1px solid #cddcf0;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-return-evidence__button--secondary:hover {
    border-color: #b5cae8;
    background: #f6f9fe;
}

/* Tablet */

@media (max-width: 1000px) {

    .bk-return-evidence__actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bk-return-evidence__lcd {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-return-evidence__lcd-rules {
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 900px) {

    .bk-return-evidence {
        padding: 58px 18px 64px;
    }

    .bk-return-evidence__layout {
        grid-template-columns: 1fr;
        max-width: 780px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-evidence {
        padding: 45px 12px 52px;
    }

    .bk-return-evidence__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-return-evidence__head p {
        font-size: 12.5px;
    }

    .bk-return-evidence__actions-grid {
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 29px;
    }

    .bk-return-evidence__action-card {
        min-height: 0;
        padding: 20px 17px;
    }

    .bk-return-evidence__problems,
    .bk-return-evidence__documents {
        padding: 22px 17px;
        border-radius: 20px;
    }

    .bk-return-evidence__card-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-return-evidence__card-head h3 {
        font-size: 16px;
    }

    .bk-return-evidence__lcd {
        padding: 19px 17px;
    }

    .bk-return-evidence__lcd-content {
        align-items: flex-start;
    }

    .bk-return-evidence__lcd-icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .bk-return-evidence__support {
        flex-direction: column;
        align-items: stretch;

        padding: 15px;
    }

    .bk-return-evidence__support-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-return-evidence__button {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — RETURN POLICY FAQ
========================================================= */

.bk-return-faq-wrap,
.bk-return-faq-wrap * {
    box-sizing: border-box;
}

.bk-return-faq-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-return-faq-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-return-faq-wrap .elementor-widget-html,
.bk-return-faq-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-return-faq {
    width: 100%;
    margin: 0;
    padding: 72px 22px 88px;

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #ffffff 100%
        );
}

.bk-return-faq__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-return-faq__head {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
}

.bk-return-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-return-faq__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-return-faq__head h2 span {
    color: #1765dc;
}

.bk-return-faq__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* مسیرها */

.bk-return-faq__paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

.bk-return-faq__path-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 285px;
    padding: 23px 21px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 16px 38px rgba(24, 63, 119, 0.06);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-faq__path-card:hover {
    transform: translateY(-4px);

    border-color: rgba(23, 101, 220, 0.21);

    box-shadow:
        0 23px 48px rgba(24, 63, 119, 0.10);
}

.bk-return-faq__path-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.bk-return-faq__path-icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-return-faq__path-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-faq__path-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 28px;
    padding: 0 10px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-return-faq__path-card h3 {
    margin: 20px 0 0;

    color: #12335e;
    font-size: 15.5px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-return-faq__path-card p {
    margin: 8px 0 0;

    color: #748198;
    font-size: 10.5px;
    line-height: 2;
}

.bk-return-faq__path-status {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    margin-top: auto;
    padding: 6px 10px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9px;
    font-weight: 750;
}

.bk-return-faq__path-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    width: fit-content;
    margin-top: auto;
    padding-top: 17px;

    color: #1765dc !important;

    font-size: 10px;
    font-weight: 850;
    text-decoration: none !important;
}

.bk-return-faq__path-link svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* تصمیم‌گیری */

.bk-return-faq__decision {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    max-width: 980px;

    margin: 22px auto 0;
    padding: 16px 17px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-return-faq__decision-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-return-faq__decision-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-faq__decision > div {
    min-width: 0;
}

.bk-return-faq__decision strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11px;
    font-weight: 850;
}

.bk-return-faq__decision span {
    display: block;

    color: #6f7f96;
    font-size: 9.8px;
    line-height: 1.9;
}

/* FAQ list */

.bk-return-faq__list {
    display: grid;
    gap: 10px;

    width: 100%;
    max-width: 1080px;

    margin: 31px auto 0;
}

.bk-return-faq__item {
    width: 100%;
    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(24, 63, 119, 0.045);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-faq__item[open] {
    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 16px 35px rgba(24, 63, 119, 0.075);
}

.bk-return-faq__item summary {
    display: flex;
    align-items: center;
    gap: 13px;

    width: 100%;
    min-height: 70px;
    padding: 14px 17px;

    list-style: none;
    cursor: pointer;
}

.bk-return-faq__item summary::-webkit-details-marker {
    display: none;
}

.bk-return-faq__number {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 10px;
    font-weight: 850;
}

.bk-return-faq__item summary strong {
    flex: 1 1 auto;
    min-width: 0;

    color: #1c3c66;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.9;
}

.bk-return-faq__toggle {
    display: flex;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 11px;

    background: #f2f6fc;
    color: #1765dc;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.bk-return-faq__toggle svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-faq__item[open]
.bk-return-faq__toggle {
    transform: rotate(180deg);
    background: #e5efff;
}

/* پاسخ‌ها */

.bk-return-faq__answer {
    padding: 0 70px 19px 70px;
}

.bk-return-faq__answer p {
    margin: 0;
    padding-top: 15px;

    border-top: 1px solid #e5ebf3;

    color: #748198;
    font-size: 11.5px;
    line-height: 2.15;
}

.bk-return-faq__inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 13px;

    color: #1765dc !important;

    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-return-faq__inline-link svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* پشتیبانی نهایی */

.bk-return-faq__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: 100%;
    max-width: 1180px;

    margin: 36px auto 0;
    padding: 28px 30px;

    border: 1px solid rgba(31, 105, 225, 0.12);
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.12),
            transparent 39%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f3f8ff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);
}

.bk-return-faq__support-content {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 0;
}

.bk-return-faq__support-icon {
    display: flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.24);
}

.bk-return-faq__support-icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-return-faq__support-content > div {
    min-width: 0;
}

.bk-return-faq__support-label {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-return-faq__support h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-return-faq__support p {
    margin: 5px 0 0;

    color: #748198;
    font-size: 10.5px;
    line-height: 1.9;
}

.bk-return-faq__support-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

/* دکمه‌ها */

.bk-return-faq__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: 0 17px;

    border-radius: 12px;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-return-faq__button:hover {
    transform: translateY(-2px);
}

.bk-return-faq__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 10px 23px rgba(23, 101, 220, 0.20);
}

.bk-return-faq__button--primary:hover {
    background: #1259c6;
}

.bk-return-faq__button--secondary {
    border: 1px solid #d2deef;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-return-faq__button--secondary:hover {
    border-color: #b9cee9;
    background: #f6f9fe;
}

/* Tablet */

@media (max-width: 900px) {

    .bk-return-faq {
        padding: 58px 18px 70px;
    }

    .bk-return-faq__paths {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .bk-return-faq__path-card {
        min-height: 0;
    }

    .bk-return-faq__support {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-return-faq__support-actions {
        justify-content: flex-start;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-return-faq {
        padding: 45px 12px 58px;
    }

    .bk-return-faq__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-return-faq__head p {
        font-size: 12.5px;
    }

    .bk-return-faq__item summary {
        align-items: flex-start;
        gap: 10px;

        min-height: 64px;
        padding: 13px 12px;
    }

    .bk-return-faq__number {
        flex-basis: 35px;

        width: 35px;
        height: 35px;
    }

    .bk-return-faq__item summary strong {
        font-size: 11.5px;
    }

    .bk-return-faq__toggle {
        flex-basis: 32px;

        width: 32px;
        height: 32px;
    }

    .bk-return-faq__answer {
        padding: 0 57px 17px 12px;
    }

    .bk-return-faq__decision {
        align-items: flex-start;
    }

    .bk-return-faq__support {
        gap: 21px;
        padding: 23px 18px;

        border-radius: 20px;
    }

    .bk-return-faq__support-content {
        align-items: flex-start;
    }

    .bk-return-faq__support-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .bk-return-faq__support-actions {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
    }

    .bk-return-faq__button {
        width: 100%;
    }
}

@media (max-width: 420px) {

    .bk-return-faq__number {
        display: none;
    }

    .bk-return-faq__answer {
        padding-right: 13px;
    }
}

/* =========================================================
   BEHZADKALA — REPAIRER REGISTRATION HERO
========================================================= */

.bk-repairer-hero-wrap,
.bk-repairer-hero-wrap * {
    box-sizing: border-box;
}

.bk-repairer-hero-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-repairer-hero-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-repairer-hero-wrap .elementor-widget-html,
.bk-repairer-hero-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-repairer-hero {
    width: 100%;
    margin: 0;
    padding: 32px 22px 38px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8ff 100%
        );
}

.bk-repairer-hero__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(370px, 0.92fr);

    align-items: center;
    gap: 58px;

    width: 100%;
    max-width: 1460px;
    min-height: 610px;

    margin: 0 auto;
    padding: 58px 68px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 4% 8%,
            rgba(31, 105, 225, 0.11),
            transparent 29%
        ),
        radial-gradient(
            circle at 97% 92%,
            rgba(31, 105, 225, 0.08),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 25px 65px rgba(18, 56, 110, 0.08);
}

/* Content */

.bk-repairer-hero__content {
    position: relative;
    z-index: 2;

    min-width: 0;
    text-align: right;
}

.bk-repairer-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-repairer-hero h1 {
    max-width: 790px;
    margin: 0;

    color: #0b2855;
    font-size: clamp(38px, 3.4vw, 50px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.9px;
}

.bk-repairer-hero h1 span {
    display: block;
    color: #1765dc;
}

.bk-repairer-hero__description {
    max-width: 760px;
    margin: 19px 0 0;

    color: #68778e;
    font-size: 14.5px;
    line-height: 2.15;
}

/* Features */

.bk-repairer-hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    width: 100%;
    max-width: 760px;

    margin-top: 25px;
}

.bk-repairer-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 75px;
    padding: 11px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 15px;

    background: rgba(248, 251, 255, 0.94);
}

.bk-repairer-hero__feature-icon {
    display: flex;
    flex: 0 0 41px;
    align-items: center;
    justify-content: center;

    width: 41px;
    height: 41px;

    border-radius: 12px;

    background: #e5efff;
    color: #1765dc;
}

.bk-repairer-hero__feature-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-hero__feature > div {
    min-width: 0;
}

.bk-repairer-hero__feature strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-repairer-hero__feature span {
    display: block;

    color: #8290a4;
    font-size: 8.5px;
    line-height: 1.7;
}

/* Actions */

.bk-repairer-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 25px;
}

.bk-repairer-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 50px;
    padding: 0 21px;

    border-radius: 13px;

    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-repairer-hero__button:hover {
    transform: translateY(-2px);
}

.bk-repairer-hero__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-hero__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-repairer-hero__button--primary:hover {
    background: #1259c6;

    box-shadow:
        0 14px 30px rgba(23, 101, 220, 0.28);
}

.bk-repairer-hero__button--secondary {
    border: 1px solid #d3e0f2;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-repairer-hero__button--secondary:hover {
    border-color: #b9ceec;
    background: #f5f9ff;
}

/* Notice */

.bk-repairer-hero__notice {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    max-width: 720px;
    margin-top: 16px;
    padding: 12px 13px;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 14px;

    background: #f4f8ff;
}

.bk-repairer-hero__notice svg {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;
    margin-top: 2px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-hero__notice span {
    color: #687a92;
    font-size: 9.7px;
    line-height: 1.9;
}

/* Visual */

.bk-repairer-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

.bk-repairer-hero__glow {
    position: absolute;
    inset: 25px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.18),
            rgba(31, 105, 225, 0.05) 49%,
            transparent 72%
        );

    filter: blur(9px);
}

/* Card */

.bk-repairer-card {
    position: relative;
    z-index: 2;

    width: min(100%, 410px);
    padding: 28px 26px 24px;

    border: 1px solid rgba(31, 105, 225, 0.13);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 247, 255, 0.97)
        );

    box-shadow:
        0 26px 58px rgba(26, 67, 126, 0.14);
}

.bk-repairer-card__head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 20px;
    border-bottom: 1px solid #e1e9f4;
}

.bk-repairer-card__head-icon {
    display: flex;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.23);
}

.bk-repairer-card__head-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-card__head > div {
    min-width: 0;
}

.bk-repairer-card__head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-repairer-card__head strong {
    display: block;

    color: #0b2855;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.6;
}

/* Steps */

.bk-repairer-card__steps {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.bk-repairer-card__step {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 61px;
    padding: 10px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.83);
}

.bk-repairer-card__number {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #edf2f8;
    color: #8190a4;

    font-size: 9px;
    font-weight: 850;
}

.bk-repairer-card__step.is-complete
.bk-repairer-card__number {
    background: #e8f1ff;
    color: #1765dc;
}

.bk-repairer-card__step.is-current {
    border-color: rgba(23, 101, 220, 0.17);
    background: #edf4ff;
}

.bk-repairer-card__step.is-current
.bk-repairer-card__number {
    background: #1765dc;
    color: #ffffff;
}

.bk-repairer-card__step > div {
    min-width: 0;
}

.bk-repairer-card__step strong {
    display: block;
    margin-bottom: 2px;

    color: #28466e;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-repairer-card__step span {
    display: block;

    color: #7c899c;
    font-size: 8.8px;
    line-height: 1.7;
}

/* Restricted category */

.bk-repairer-card__restricted {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 16px;
    padding: 12px;

    border: 1px solid rgba(217, 137, 11, 0.19);
    border-radius: 14px;

    background: #fff8e9;
}

.bk-repairer-card__restricted-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: #d8870b;
}

.bk-repairer-card__restricted-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-card__restricted > div {
    min-width: 0;
}

.bk-repairer-card__restricted strong {
    display: block;
    margin-bottom: 2px;

    color: #765017;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-repairer-card__restricted span {
    display: block;

    color: #8a6c3b;
    font-size: 8.9px;
    line-height: 1.7;
}

/* Tablet */

@media (max-width: 1000px) {

    .bk-repairer-hero__features {
        grid-template-columns: 1fr;
    }

    .bk-repairer-hero__feature {
        min-height: 65px;
    }
}

@media (max-width: 900px) {

    .bk-repairer-hero {
        padding: 24px 16px 32px;
    }

    .bk-repairer-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;

        min-height: 0;
        padding: 46px 36px;

        border-radius: 27px;
    }

    .bk-repairer-hero__visual {
        max-width: 570px;
        margin: 0 auto;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-repairer-hero {
        padding: 14px 11px 26px;
    }

    .bk-repairer-hero__inner {
        gap: 34px;
        padding: 33px 18px 35px;

        border-radius: 22px;
    }

    .bk-repairer-hero__content {
        text-align: center;
    }

    .bk-repairer-hero h1 {
        font-size: 29px;
        line-height: 1.65;
    }

    .bk-repairer-hero__description {
        font-size: 13px;
        line-height: 2.05;
    }

    .bk-repairer-hero__feature,
    .bk-repairer-hero__notice {
        text-align: right;
    }

    .bk-repairer-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-repairer-hero__button {
        width: 100%;
    }

    .bk-repairer-card {
        width: 100%;
        padding: 24px 17px 21px;

        text-align: right;
    }
}

.bk-repairer-form-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 60px 20px 78px !important;
    gap: 0 !important;

    background:
        linear-gradient(
            180deg,
            #f4f8ff 0%,
            #ffffff 100%
        );
}

.bk-repairer-form-wrap > .e-con-inner {
    width: 100% !important;
    max-width: 1460px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-repairer-form-wrap .elementor-widget-shortcode,
.bk-repairer-form-wrap
.elementor-widget-shortcode
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bk-repairer-form-wrap .bkvr-application,
.bk-repairer-form-wrap .bkvr-box {
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 767px) {

    .bk-repairer-form-wrap {
        padding: 43px 12px 55px !important;
    }
}


/* =========================================================
   BEHZADKALA — REPAIRER REVIEW
========================================================= */

.bk-repairer-review-wrap,
.bk-repairer-review-wrap * {
    box-sizing: border-box;
}

.bk-repairer-review-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-repairer-review-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-repairer-review-wrap .elementor-widget-html,
.bk-repairer-review-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-repairer-review {
    width: 100%;
    margin: 0;
    padding: 72px 22px 88px;

    background: #ffffff;
}

.bk-repairer-review__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-repairer-review__head {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.bk-repairer-review__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-repairer-review__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-repairer-review__head h2 span {
    color: #1765dc;
}

.bk-repairer-review__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Steps */

.bk-repairer-review__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;

    width: 100%;
    max-width: 1180px;

    margin: 39px auto 0;
}

.bk-repairer-review__step {
    position: relative;

    min-width: 0;
    min-height: 240px;
    padding: 22px 20px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 15px 37px rgba(24, 63, 119, 0.06);
}

.bk-repairer-review__step-number {
    position: absolute;
    top: 18px;
    left: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 27px;

    border-radius: 100px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 9px;
    font-weight: 850;
}

.bk-repairer-review__step-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.21);
}

.bk-repairer-review__step-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__step h3 {
    margin: 20px 0 0;

    color: #173760;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.8;
}

.bk-repairer-review__step p {
    margin: 8px 0 0;

    color: #748198;
    font-size: 10.2px;
    line-height: 2;
}

/* Main layout */

.bk-repairer-review__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    width: 100%;
    max-width: 1180px;

    margin: 24px auto 0;
}

.bk-repairer-review__criteria,
.bk-repairer-review__access {
    min-width: 0;
    padding: 28px 27px 26px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 37%
        ),
        #ffffff;

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.07);
}

/* Card head */

.bk-repairer-review__card-head {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e3eaf3;
}

.bk-repairer-review__card-icon {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-repairer-review__card-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__card-head > div {
    min-width: 0;
}

.bk-repairer-review__card-head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-repairer-review__card-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

/* Criteria */

.bk-repairer-review__criteria-list {
    display: grid;
    gap: 10px;

    margin-top: 20px;
}

.bk-repairer-review__criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    min-height: 75px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.84);
}

.bk-repairer-review__check {
    display: flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-repairer-review__check svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__criteria-item > div {
    min-width: 0;
}

.bk-repairer-review__criteria-item strong {
    display: block;
    margin-bottom: 3px;

    color: #28466e;
    font-size: 10.8px;
    font-weight: 850;
}

.bk-repairer-review__criteria-item span {
    display: block;

    color: #7a8799;
    font-size: 9.6px;
    line-height: 1.85;
}

/* Access */

.bk-repairer-review__access-box {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 20px;
    padding: 15px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 16px;

    background: #eaf2ff;
}

.bk-repairer-review__access-icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background: #ffffff;
    color: #1765dc;
}

.bk-repairer-review__access-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__access-box > div {
    min-width: 0;
}

.bk-repairer-review__access-box strong {
    display: block;
    margin-bottom: 3px;

    color: #15345f;
    font-size: 11px;
    font-weight: 850;
}

.bk-repairer-review__access-box span {
    display: block;

    color: #6f7f96;
    font-size: 9.5px;
    line-height: 1.8;
}

.bk-repairer-review__access-list {
    display: grid;
    gap: 9px;

    margin-top: 16px;
}

.bk-repairer-review__access-list > div {
    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 48px;
    padding: 10px 11px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 13px;

    background: #ffffff;
}

.bk-repairer-review__access-list svg {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__access-list span {
    color: #526781;
    font-size: 9.8px;
    font-weight: 750;
    line-height: 1.8;
}

.bk-repairer-review__access-warning {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 14px;
    padding: 12px 13px;

    border: 1px solid rgba(217, 137, 11, 0.18);
    border-radius: 14px;

    background: #fff8e9;
}

.bk-repairer-review__access-warning svg {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;
    margin-top: 2px;

    fill: none;
    stroke: #d8870b;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__access-warning span {
    color: #8a6c3b;
    font-size: 9.4px;
    line-height: 1.85;
}

/* Rejected request */

.bk-repairer-review__rejected {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: 100%;
    max-width: 980px;

    margin: 22px auto 0;
    padding: 16px 17px;

    border: 1px solid rgba(225, 144, 20, 0.20);
    border-radius: 17px;

    background: #fff8e9;
}

.bk-repairer-review__rejected-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: #ffffff;
    color: #d8870b;
}

.bk-repairer-review__rejected-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__rejected > div {
    min-width: 0;
}

.bk-repairer-review__rejected strong {
    display: block;
    margin-bottom: 3px;

    color: #765017;
    font-size: 11px;
    font-weight: 850;
}

.bk-repairer-review__rejected span {
    display: block;

    color: #8a6c3b;
    font-size: 9.8px;
    line-height: 1.9;
}

/* FAQ */

.bk-repairer-review__faq {
    width: 100%;
    max-width: 1080px;

    margin: 34px auto 0;
}

.bk-repairer-review__faq-head {
    margin-bottom: 17px;
    text-align: center;
}

.bk-repairer-review__faq-head span {
    display: block;
    margin-bottom: 4px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-repairer-review__faq-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-repairer-review__faq-list {
    display: grid;
    gap: 10px;
}

.bk-repairer-review__faq-item {
    width: 100%;
    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(24, 63, 119, 0.045);
}

.bk-repairer-review__faq-item[open] {
    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 16px 35px rgba(24, 63, 119, 0.075);
}

.bk-repairer-review__faq-item summary {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 66px;
    padding: 13px 16px;

    list-style: none;
    cursor: pointer;
}

.bk-repairer-review__faq-item summary::-webkit-details-marker {
    display: none;
}

.bk-repairer-review__faq-item summary strong {
    flex: 1 1 auto;

    color: #1c3c66;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.9;
}

.bk-repairer-review__faq-toggle {
    display: flex;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 11px;

    background: #f2f6fc;
    color: #1765dc;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.bk-repairer-review__faq-toggle svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__faq-item[open]
.bk-repairer-review__faq-toggle {
    transform: rotate(180deg);
    background: #e5efff;
}

.bk-repairer-review__faq-answer {
    padding: 0 17px 18px;
}

.bk-repairer-review__faq-answer p {
    margin: 0;
    padding-top: 14px;

    border-top: 1px solid #e5ebf3;

    color: #748198;
    font-size: 10.7px;
    line-height: 2.05;
}

/* Support */

.bk-repairer-review__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    width: 100%;
    max-width: 1180px;

    margin: 36px auto 0;
    padding: 27px 29px;

    border: 1px solid rgba(31, 105, 225, 0.12);
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.12),
            transparent 39%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f3f8ff
        );

    box-shadow:
        0 19px 46px rgba(24, 63, 119, 0.075);
}

.bk-repairer-review__support-content {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
}

.bk-repairer-review__support-icon {
    display: flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 12px 27px rgba(23, 101, 220, 0.24);
}

.bk-repairer-review__support-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-repairer-review__support-content > div {
    min-width: 0;
}

.bk-repairer-review__support-label {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 10px;
    font-weight: 750;
}

.bk-repairer-review__support h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-repairer-review__support p {
    margin: 5px 0 0;

    color: #748198;
    font-size: 10.3px;
    line-height: 1.9;
}

.bk-repairer-review__support-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.bk-repairer-review__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: 0 17px;

    border-radius: 12px;

    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.bk-repairer-review__button:hover {
    transform: translateY(-2px);
}

.bk-repairer-review__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;
}

.bk-repairer-review__button--primary:hover {
    background: #1259c6;
}

.bk-repairer-review__button--secondary {
    border: 1px solid #d2deef;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-repairer-review__button--secondary:hover {
    border-color: #b9cee9;
    background: #f6f9fe;
}

/* Tablet */

@media (max-width: 1000px) {

    .bk-repairer-review__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .bk-repairer-review {
        padding: 58px 18px 70px;
    }

    .bk-repairer-review__layout {
        grid-template-columns: 1fr;
        max-width: 780px;
    }

    .bk-repairer-review__support {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-repairer-review__support-actions {
        justify-content: flex-start;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-repairer-review {
        padding: 45px 12px 58px;
    }

    .bk-repairer-review__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-repairer-review__head p {
        font-size: 12.5px;
    }

    .bk-repairer-review__steps {
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 29px;
    }

    .bk-repairer-review__step {
        min-height: 0;
        padding: 20px 17px;
    }

    .bk-repairer-review__criteria,
    .bk-repairer-review__access {
        padding: 22px 17px;
        border-radius: 20px;
    }

    .bk-repairer-review__card-icon {
        flex-basis: 51px;

        width: 51px;
        height: 51px;
    }

    .bk-repairer-review__card-head h3 {
        font-size: 16px;
    }

    .bk-repairer-review__support {
        gap: 21px;
        padding: 22px 18px;
    }

    .bk-repairer-review__support-content {
        align-items: flex-start;
    }

    .bk-repairer-review__support-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .bk-repairer-review__support-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-repairer-review__button {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — HOME REPAIRER CTA
========================================================= */

.bk-home-repairer-wrap,
.bk-home-repairer-wrap * {
    box-sizing: border-box;
}

.bk-home-repairer-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-home-repairer-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-home-repairer-wrap .elementor-widget-html,
.bk-home-repairer-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-home-repairer {
    width: 100%;
    margin: 0;
    padding: 56px 22px;

    background: #ffffff;
}

.bk-home-repairer__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.9fr);

    align-items: center;
    gap: 54px;

    width: 100%;
    max-width: 1460px;
    min-height: 470px;

    margin: 0 auto;
    padding: 52px 64px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.15);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(60, 130, 235, 0.22),
            transparent 31%
        ),
        radial-gradient(
            circle at 96% 90%,
            rgba(23, 101, 220, 0.23),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #071f43 0%,
            #0b2855 50%,
            #123e78 100%
        );

    box-shadow:
        0 25px 65px rgba(11, 40, 85, 0.20);
}

/* Content */

.bk-home-repairer__content {
    min-width: 0;
}

.bk-home-repairer__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;
    padding: 6px 12px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.10);
    color: #bcd6ff;

    font-size: 10px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-home-repairer__content h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-home-repairer__content h2 span {
    color: #77adff;
}

.bk-home-repairer__content > p {
    max-width: 730px;
    margin: 14px 0 0;

    color: rgba(230, 239, 253, 0.78);
    font-size: 13px;
    line-height: 2.05;
}

/* Benefits */

.bk-home-repairer__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;

    width: 100%;
    max-width: 760px;

    margin-top: 22px;
}

.bk-home-repairer__benefit {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 0;
    min-height: 67px;
    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(7px);
}

.bk-home-repairer__benefit > span {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.12);
    color: #8bb8ff;
}

.bk-home-repairer__benefit svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-home-repairer__benefit > div {
    min-width: 0;
}

.bk-home-repairer__benefit strong {
    display: block;
    margin-bottom: 2px;

    color: #ffffff;
    font-size: 9.8px;
    font-weight: 800;
}

.bk-home-repairer__benefit small {
    display: block;

    color: rgba(224, 236, 253, 0.66);
    font-size: 7.9px;
    line-height: 1.6;
}

/* Buttons */

.bk-home-repairer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 22px;
}

.bk-home-repairer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 47px;
    padding: 0 19px;

    border-radius: 12px;

    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-home-repairer__button:hover {
    transform: translateY(-2px);
}

.bk-home-repairer__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-home-repairer__button--primary {
    border: 1px solid #ffffff;

    background: #ffffff;
    color: #1765dc !important;

    box-shadow:
        0 11px 25px rgba(0, 0, 0, 0.17);
}

.bk-home-repairer__button--primary:hover {
    background: #edf4ff;
}

.bk-home-repairer__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

.bk-home-repairer__button--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Visual */

.bk-home-repairer__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

.bk-home-repairer-card {
    width: min(100%, 410px);
    padding: 25px 24px 22px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.23);

    backdrop-filter: blur(11px);
}

/* Card head */

.bk-home-repairer-card__head {
    display: flex;
    align-items: center;
    gap: 11px;

    padding-bottom: 18px;

    border-bottom: 1px solid #e2eaf4;
}

.bk-home-repairer-card__head-icon {
    display: flex;
    flex: 0 0 51px;
    align-items: center;
    justify-content: center;

    width: 51px;
    height: 51px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 23px rgba(23, 101, 220, 0.23);
}

.bk-home-repairer-card__head-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-home-repairer-card__head > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-home-repairer-card__head > div span {
    display: block;
    margin-bottom: 2px;

    color: #1765dc;
    font-size: 9px;
    font-weight: 750;
}

.bk-home-repairer-card__head strong {
    display: block;

    color: #0b2855;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-home-repairer-card__status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;

    min-height: 29px;
    padding: 0 10px;

    border-radius: 100px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 8px;
    font-weight: 850;
}

/* Access */

.bk-home-repairer-card__access {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 17px;
    padding: 13px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 14px;

    background: #eaf2ff;
}

.bk-home-repairer-card__access-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #ffffff;
    color: #1765dc;
}

.bk-home-repairer-card__access-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-home-repairer-card__access > div {
    min-width: 0;
}

.bk-home-repairer-card__access span {
    display: block;
    margin-bottom: 2px;

    color: #6f7f96;
    font-size: 8.3px;
}

.bk-home-repairer-card__access strong {
    display: block;

    color: #15345f;
    font-size: 10.3px;
    font-weight: 850;
}

/* Steps */

.bk-home-repairer-card__steps {
    display: grid;
    gap: 7px;

    margin-top: 15px;
}

.bk-home-repairer-card__steps > div {
    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 42px;
    padding: 8px 9px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 11px;

    background: #ffffff;
}

.bk-home-repairer-card__steps > div > span {
    display: flex;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    border-radius: 9px;

    background: #edf4ff;
    color: #1765dc;

    font-size: 8px;
    font-weight: 850;
}

.bk-home-repairer-card__steps p {
    margin: 0;

    color: #526781;
    font-size: 8.7px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-home-repairer-card__steps i {
    display: none;
}

/* Policy link */

.bk-home-repairer-card__policy {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 15px;
    padding-top: 14px;

    border-top: 1px solid #e2eaf4;

    color: #1765dc !important;

    font-size: 9px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-home-repairer-card__policy svg {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-home-repairer-card__policy svg:last-child {
    margin-right: auto;
}

/* Tablet */

@media (max-width: 1000px) {

    .bk-home-repairer__benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .bk-home-repairer {
        padding: 46px 17px;
    }

    .bk-home-repairer__inner {
        grid-template-columns: 1fr;
        gap: 38px;

        min-height: 0;
        padding: 43px 35px;
    }

    .bk-home-repairer__visual {
        max-width: 560px;
        margin: 0 auto;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-home-repairer {
        padding: 34px 11px;
    }

    .bk-home-repairer__inner {
        gap: 31px;
        padding: 32px 17px;

        border-radius: 22px;
    }

    .bk-home-repairer__content {
        text-align: center;
    }

    .bk-home-repairer__content h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-home-repairer__content > p {
        font-size: 12px;
    }

    .bk-home-repairer__benefit {
        text-align: right;
    }

    .bk-home-repairer__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-home-repairer__button {
        width: 100%;
    }

    .bk-home-repairer-card {
        width: 100%;
        padding: 22px 17px 19px;

        text-align: right;
    }

    .bk-home-repairer-card__status {
        display: none;
    }
}

/* =========================================================
   BEHZADKALA — FAQ HERO & SEARCH
========================================================= */

.bk-faq-hero-wrap,
.bk-faq-hero-wrap * {
    box-sizing: border-box;
}

.bk-faq-hero-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-faq-hero-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-faq-hero-wrap .elementor-widget-html,
.bk-faq-hero-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-faq-hero {
    width: 100%;
    margin: 0;
    padding: 32px 22px 38px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8ff 100%
        );
}

.bk-faq-hero__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(370px, 0.92fr);

    align-items: center;
    gap: 58px;

    width: 100%;
    max-width: 1460px;
    min-height: 630px;

    margin: 0 auto;
    padding: 58px 68px;

    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 4% 8%,
            rgba(31, 105, 225, 0.11),
            transparent 29%
        ),
        radial-gradient(
            circle at 97% 92%,
            rgba(31, 105, 225, 0.08),
            transparent 30%
        ),
        #ffffff;

    box-shadow:
        0 25px 65px rgba(18, 56, 110, 0.08);
}

/* Content */

.bk-faq-hero__content {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.bk-faq-hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;
    padding: 7px 14px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-faq-hero h1 {
    max-width: 790px;
    margin: 0;

    color: #0b2855;
    font-size: clamp(38px, 3.4vw, 50px);
    font-weight: 850;
    line-height: 1.55;
    letter-spacing: -0.9px;
}

.bk-faq-hero h1 span {
    display: block;
    color: #1765dc;
}

.bk-faq-hero__description {
    max-width: 760px;
    margin: 19px 0 0;

    color: #68778e;
    font-size: 14px;
    line-height: 2.15;
}

/* Search */

.bk-faq-search {
    width: 100%;
    max-width: 730px;
    margin-top: 25px;
}

.bk-faq-search__label {
    display: block;
    margin-bottom: 8px;

    color: #173760;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-faq-search__field {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 58px;

    border: 1px solid rgba(31, 105, 225, 0.17);
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 13px 30px rgba(24, 63, 119, 0.08);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-faq-search__field:focus-within {
    border-color: #3c82eb;

    box-shadow:
        0 0 0 4px rgba(23, 101, 220, 0.10),
        0 16px 35px rgba(24, 63, 119, 0.10);
}

.bk-faq-search__icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;

    width: 52px;
    color: #1765dc;
}

.bk-faq-search__icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-search__input {
    flex: 1 1 auto;

    width: 100%;
    min-width: 0;
    height: 56px;
    margin: 0 !important;
    padding: 0 3px !important;

    border: 0 !important;
    outline: 0 !important;

    background: transparent !important;
    color: #183a66 !important;

    font-family: inherit;
    font-size: 12px;
    line-height: 1.7;

    box-shadow: none !important;
}

.bk-faq-search__input::placeholder {
    color: #97a3b4;
    opacity: 1;
}

.bk-faq-search__clear {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    margin-left: 8px;
    padding: 0;

    border: 0;
    border-radius: 11px;

    background: #edf4ff;
    color: #1765dc;

    cursor: pointer;
}

.bk-faq-search__clear[hidden] {
    display: none !important;
}

.bk-faq-search__clear svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-search__status {
    min-height: 22px;
    margin-top: 7px;

    color: #7d899a;
    font-size: 9px;
    line-height: 1.8;
}

/* Empty state */

.bk-faq-search__empty {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 100%;
    max-width: 730px;

    margin-top: 10px;
    padding: 13px 14px;

    border: 1px solid rgba(217, 137, 11, 0.19);
    border-radius: 15px;

    background: #fff8e9;
}

.bk-faq-search__empty[hidden] {
    display: none !important;
}

.bk-faq-search__empty-icon {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: #ffffff;
    color: #d8870b;
}

.bk-faq-search__empty-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-search__empty > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-search__empty strong {
    display: block;
    margin-bottom: 2px;

    color: #765017;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-faq-search__empty span {
    display: block;

    color: #8a6c3b;
    font-size: 9px;
    line-height: 1.8;
}

.bk-faq-search__empty > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-height: 39px;
    padding: 0 13px;

    border: 1px solid #d8870b;
    border-radius: 10px;

    background: #ffffff;
    color: #b86f08 !important;

    font-size: 9px;
    font-weight: 800;
    text-decoration: none !important;
}

/* Actions */

.bk-faq-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 20px;
}

.bk-faq-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 47px;
    padding: 0 18px;

    border-radius: 12px;

    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-faq-hero__button:hover {
    transform: translateY(-2px);
}

.bk-faq-hero__button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-hero__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-faq-hero__button--primary:hover {
    background: #1259c6;
}

.bk-faq-hero__button--secondary {
    border: 1px solid #d3e0f2;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-faq-hero__button--secondary:hover {
    border-color: #b9ceec;
    background: #f5f9ff;
}

/* Visual */

.bk-faq-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

.bk-faq-hero__glow {
    position: absolute;
    inset: 25px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(31, 105, 225, 0.18),
            rgba(31, 105, 225, 0.05) 49%,
            transparent 72%
        );

    filter: blur(9px);
}

/* Overview card */

.bk-faq-overview {
    position: relative;
    z-index: 2;

    width: min(100%, 420px);
    padding: 27px 25px 22px;

    border: 1px solid rgba(31, 105, 225, 0.13);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(242, 247, 255, 0.97)
        );

    box-shadow:
        0 26px 58px rgba(26, 67, 126, 0.14);
}

.bk-faq-overview__head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 19px;

    border-bottom: 1px solid #e1e9f4;
}

.bk-faq-overview__head-icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 24px rgba(23, 101, 220, 0.23);
}

.bk-faq-overview__head-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-overview__head > div {
    min-width: 0;
}

.bk-faq-overview__head span {
    display: block;
    margin-bottom: 3px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 750;
}

.bk-faq-overview__head strong {
    display: block;

    color: #0b2855;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.7;
}

/* Categories */

.bk-faq-overview__categories {
    display: grid;
    gap: 8px;

    margin-top: 17px;
}

.bk-faq-overview__category {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 57px;
    padding: 9px 10px;

    border: 1px solid rgba(31, 105, 225, 0.07);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.82);

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.bk-faq-overview__category:hover {
    transform: translateX(-3px);

    border-color: rgba(23, 101, 220, 0.19);
    background: #edf4ff;
}

.bk-faq-overview__category-icon {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-faq-overview__category-icon svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-overview__category > span:nth-child(2) {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-overview__category strong {
    display: block;
    margin-bottom: 1px;

    color: #28466e;
    font-size: 9.7px;
    font-weight: 850;
}

.bk-faq-overview__category small {
    display: block;

    color: #7c899c;
    font-size: 8.1px;
    line-height: 1.6;
}

.bk-faq-overview__arrow {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer */

.bk-faq-overview__footer {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin-top: 15px;
    padding-top: 14px;

    border-top: 1px solid #e1e9f4;
}

.bk-faq-overview__footer > span {
    display: flex;
    flex: 0 0 19px;
    align-items: center;
    justify-content: center;

    color: #1765dc;
}

.bk-faq-overview__footer svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-overview__footer p {
    margin: 0;

    color: #748198;
    font-size: 8.8px;
    line-height: 1.8;
}

/* Search results */

[data-bk-faq-item][hidden],
[data-bk-faq-section][hidden] {
    display: none !important;
}

[data-bk-faq-item][data-bk-search-match="true"] {
    border-color: rgba(23, 101, 220, 0.28) !important;

    box-shadow:
        0 13px 32px rgba(23, 101, 220, 0.09) !important;
}

/* Tablet */

@media (max-width: 900px) {

    .bk-faq-hero {
        padding: 24px 16px 32px;
    }

    .bk-faq-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;

        min-height: 0;
        padding: 46px 36px;

        border-radius: 27px;
    }

    .bk-faq-hero__visual {
        max-width: 570px;
        margin: 0 auto;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-faq-hero {
        padding: 14px 11px 26px;
    }

    .bk-faq-hero__inner {
        gap: 34px;
        padding: 33px 18px 35px;

        border-radius: 22px;
    }

    .bk-faq-hero__content {
        text-align: center;
    }

    .bk-faq-hero h1 {
        font-size: 29px;
        line-height: 1.65;
    }

    .bk-faq-hero__description {
        font-size: 13px;
        line-height: 2.05;
    }

    .bk-faq-search {
        text-align: right;
    }

    .bk-faq-search__field {
        min-height: 54px;
    }

    .bk-faq-search__input {
        height: 52px;
        font-size: 10.5px;
    }

    .bk-faq-search__empty {
        align-items: flex-start;
        flex-wrap: wrap;
        text-align: right;
    }

    .bk-faq-search__empty > a {
        width: 100%;
    }

    .bk-faq-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-faq-hero__button {
        width: 100%;
    }

    .bk-faq-overview {
        width: 100%;
        padding: 23px 17px 19px;

        text-align: right;
    }
}

/* =========================================================
   BEHZADKALA — FAQ COMMERCE
========================================================= */

.bk-faq-commerce-wrap,
.bk-faq-commerce-wrap * {
    box-sizing: border-box;
}

.bk-faq-commerce-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-faq-commerce-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-faq-commerce-wrap .elementor-widget-html,
.bk-faq-commerce-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-faq-commerce {
    width: 100%;
    margin: 0;
    padding: 72px 22px 78px;

    background: #ffffff;
}

.bk-faq-commerce__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Header */

.bk-faq-commerce__head {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.bk-faq-commerce__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-faq-commerce__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-faq-commerce__head h2 span {
    color: #1765dc;
}

.bk-faq-commerce__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Shortcuts */

.bk-faq-commerce__shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 1180px;

    margin: 38px auto 0;
}

.bk-faq-commerce__shortcut {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 82px;
    padding: 13px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 40%
        ),
        #ffffff;

    box-shadow:
        0 12px 31px rgba(24, 63, 119, 0.05);

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-faq-commerce__shortcut:hover {
    transform: translateY(-3px);

    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 18px 38px rgba(24, 63, 119, 0.09);
}

.bk-faq-commerce__shortcut-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-faq-commerce__shortcut-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-commerce__shortcut > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-commerce__shortcut strong {
    display: block;
    margin-bottom: 2px;

    color: #26466f;
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-faq-commerce__shortcut span {
    display: block;

    color: #7b899c;
    font-size: 8.5px;
    line-height: 1.7;
}

.bk-faq-commerce__shortcut-arrow {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FAQ category */

.bk-faq-category {
    width: 100%;
    max-width: 1180px;

    margin: 30px auto 0;
    padding: 28px;

    scroll-margin-top: 30px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f7faff
        );

    box-shadow:
        0 18px 45px rgba(24, 63, 119, 0.065);
}

.bk-faq-category__header {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e2eaf4;
}

.bk-faq-category__icon {
    display: flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-faq-category__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-category__header > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-category__label {
    display: block;
    margin-bottom: 2px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 750;
}

.bk-faq-category__header h2 {
    margin: 0;

    color: #0b2855;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-faq-category__header p {
    margin: 4px 0 0;

    color: #748198;
    font-size: 9.8px;
    line-height: 1.85;
}

.bk-faq-category__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;

    min-height: 41px;
    padding: 0 14px;

    border: 1px solid #d2deef;
    border-radius: 11px;

    background: #ffffff;
    color: #1765dc !important;

    font-size: 9.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-faq-category__link svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FAQ list */

.bk-faq-category__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 10px;

    margin-top: 21px;
}

.bk-faq-item {
    width: 100%;
    overflow: hidden;

    border: 1px solid rgba(31, 105, 225, 0.09);
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 9px 25px rgba(24, 63, 119, 0.035);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-faq-item[open] {
    grid-column: span 1;

    border-color: rgba(23, 101, 220, 0.23);

    box-shadow:
        0 14px 32px rgba(24, 63, 119, 0.07);
}

.bk-faq-item summary {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 100%;
    min-height: 66px;
    padding: 12px 14px;

    list-style: none;
    cursor: pointer;
}

.bk-faq-item summary::-webkit-details-marker {
    display: none;
}

.bk-faq-item__number {
    display: flex;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border-radius: 11px;

    background: #e8f1ff;
    color: #1765dc;

    font-size: 9px;
    font-weight: 850;
}

.bk-faq-item summary strong {
    flex: 1 1 auto;
    min-width: 0;

    color: #27476f;
    font-size: 10.8px;
    font-weight: 800;
    line-height: 1.9;
}

.bk-faq-item__toggle {
    display: flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 10px;

    background: #f2f6fc;
    color: #1765dc;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.bk-faq-item__toggle svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-item[open]
.bk-faq-item__toggle {
    transform: rotate(180deg);
    background: #e5efff;
}

/* Answers */

.bk-faq-item__answer {
    padding: 0 62px 17px 14px;
}

.bk-faq-item__answer p {
    margin: 0;
    padding-top: 13px;

    border-top: 1px solid #e5ebf3;

    color: #748198;
    font-size: 9.9px;
    line-height: 2.05;
}

.bk-faq-item__inline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: 11px;

    color: #1765dc !important;

    font-size: 9.3px;
    font-weight: 800;
    text-decoration: none !important;
}

.bk-faq-item__inline-link svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-item__info {
    display: flex;
    align-items: center;
    gap: 7px;

    width: fit-content;
    margin-top: 11px;
    padding: 8px 10px;

    border: 1px solid rgba(31, 105, 225, 0.08);
    border-radius: 11px;

    background: #f3f7fd;

    color: #63758d;
    font-size: 8.8px;
    line-height: 1.7;
}

.bk-faq-item__info svg {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Search compatibility */

[data-bk-faq-item][hidden],
[data-bk-faq-section][hidden] {
    display: none !important;
}

[data-bk-faq-item][data-bk-search-match="true"] {
    border-color: rgba(23, 101, 220, 0.30);

    box-shadow:
        0 14px 32px rgba(23, 101, 220, 0.09);
}

/* Support */

.bk-faq-commerce__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    width: 100%;
    max-width: 1050px;

    margin: 25px auto 0;
    padding: 17px 18px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 17px;

    background: #eaf2ff;
}

.bk-faq-commerce__support-content {
    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 0;
}

.bk-faq-commerce__support-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;
    color: #1765dc;
}

.bk-faq-commerce__support-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-commerce__support-content > div {
    min-width: 0;
}

.bk-faq-commerce__support strong {
    display: block;
    margin-bottom: 2px;

    color: #15345f;
    font-size: 10.5px;
    font-weight: 850;
}

.bk-faq-commerce__support span {
    display: block;

    color: #6f7f96;
    font-size: 9.3px;
    line-height: 1.8;
}

.bk-faq-commerce__support-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

/* Buttons */

.bk-faq-commerce__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 15px;

    border-radius: 11px;

    font-size: 9.7px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.bk-faq-commerce__button:hover {
    transform: translateY(-2px);
}

.bk-faq-commerce__button--primary {
    border: 1px solid #1765dc;

    background: #1765dc;
    color: #ffffff !important;
}

.bk-faq-commerce__button--primary:hover {
    background: #1259c6;
}

.bk-faq-commerce__button--secondary {
    border: 1px solid #cddcf0;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-faq-commerce__button--secondary:hover {
    border-color: #b5cae8;
    background: #f6f9fe;
}

/* Tablet */

@media (max-width: 1050px) {

    .bk-faq-commerce__shortcuts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .bk-faq-commerce {
        padding: 58px 18px 64px;
    }

    .bk-faq-category__list {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-faq-commerce {
        padding: 45px 12px 52px;
    }

    .bk-faq-commerce__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-faq-commerce__head p {
        font-size: 12.5px;
    }

    .bk-faq-commerce__shortcuts {
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 29px;
    }

    .bk-faq-category {
        padding: 21px 15px;
        border-radius: 20px;
    }

    .bk-faq-category__header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bk-faq-category__icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .bk-faq-category__header h2 {
        font-size: 16px;
    }

    .bk-faq-category__link {
        width: 100%;
        margin-top: 3px;
    }

    .bk-faq-item summary {
        align-items: flex-start;
        gap: 9px;

        min-height: 62px;
        padding: 12px 10px;
    }

    .bk-faq-item__number {
        flex-basis: 34px;

        width: 34px;
        height: 34px;
    }

    .bk-faq-item summary strong {
        font-size: 10.3px;
    }

    .bk-faq-item__toggle {
        flex-basis: 30px;

        width: 30px;
        height: 30px;
    }

    .bk-faq-item__answer {
        padding: 0 53px 16px 10px;
    }

    .bk-faq-commerce__support {
        flex-direction: column;
        align-items: stretch;

        padding: 15px;
    }

    .bk-faq-commerce__support-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-faq-commerce__button {
        width: 100%;
    }
}

@media (max-width: 420px) {

    .bk-faq-item__number {
        display: none;
    }

    .bk-faq-item__answer {
        padding-right: 11px;
    }
}

/* =========================================================
   BEHZADKALA — FAQ SERVICES
========================================================= */

.bk-faq-services-wrap,
.bk-faq-services-wrap * {
    box-sizing: border-box;
}

.bk-faq-services-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-faq-services-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-faq-services-wrap .elementor-widget-html,
.bk-faq-services-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-faq-services {
    width: 100%;
    margin: 0;
    padding: 72px 22px 82px;

    background:
        linear-gradient(
            180deg,
            #f4f8ff 0%,
            #ffffff 100%
        );
}

.bk-faq-services__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-faq-services__head {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.bk-faq-services__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-faq-services__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-faq-services__head h2 span {
    color: #1765dc;
}

.bk-faq-services__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Shortcuts */

.bk-faq-services__shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 1180px;

    margin: 38px auto 0;
}

.bk-faq-services__shortcut {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 82px;
    padding: 13px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 40%
        ),
        #ffffff;

    box-shadow:
        0 12px 31px rgba(24, 63, 119, 0.05);

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-faq-services__shortcut:hover {
    transform: translateY(-3px);

    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 18px 38px rgba(24, 63, 119, 0.09);
}

.bk-faq-services__shortcut-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-faq-services__shortcut-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-services__shortcut > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-services__shortcut strong {
    display: block;
    margin-bottom: 2px;

    color: #26466f;
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-faq-services__shortcut span {
    display: block;

    color: #7b899c;
    font-size: 8.5px;
    line-height: 1.7;
}

.bk-faq-services__shortcut-arrow {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* فاصله دسته‌ها */

.bk-faq-services .bk-faq-category {
    margin-top: 30px;
}

.bk-faq-services .bk-faq-category:first-of-type {
    margin-top: 34px;
}

/* Notice */

.bk-faq-services__notice {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    max-width: 1040px;

    margin: 26px auto 0;
    padding: 17px 18px;

    border: 1px solid rgba(217, 137, 11, 0.18);
    border-radius: 17px;

    background: #fff8e9;
}

.bk-faq-services__notice-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #ffffff;
    color: #d8870b;
}

.bk-faq-services__notice-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-services__notice > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-services__notice strong {
    display: block;
    margin-bottom: 3px;

    color: #765017;
    font-size: 10.8px;
    font-weight: 850;
}

.bk-faq-services__notice span {
    display: block;

    color: #8a6c3b;
    font-size: 9.5px;
    line-height: 1.85;
}

.bk-faq-services__notice > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-height: 41px;
    padding: 0 14px;

    border: 1px solid rgba(205, 134, 27, 0.28);
    border-radius: 11px;

    background: #ffffff;
    color: #b86f08 !important;

    font-size: 9.5px;
    font-weight: 800;
    text-decoration: none !important;
}

/* Search compatibility */

.bk-faq-services [data-bk-faq-item][hidden],
.bk-faq-services [data-bk-faq-section][hidden] {
    display: none !important;
}

.bk-faq-services
[data-bk-faq-item][data-bk-search-match="true"] {
    border-color: rgba(23, 101, 220, 0.30);

    box-shadow:
        0 14px 32px rgba(23, 101, 220, 0.09);
}

/* Tablet */

@media (max-width: 1050px) {

    .bk-faq-services__shortcuts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .bk-faq-services {
        padding: 58px 18px 68px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-faq-services {
        padding: 45px 12px 55px;
    }

    .bk-faq-services__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-faq-services__head p {
        font-size: 12.5px;
    }

    .bk-faq-services__shortcuts {
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 29px;
    }

    .bk-faq-services__notice {
        align-items: flex-start;
        flex-wrap: wrap;

        padding: 15px;
    }

    .bk-faq-services__notice > a {
        width: 100%;
    }
}

/* =========================================================
   BEHZADKALA — FAQ FINAL
========================================================= */

.bk-faq-final-wrap,
.bk-faq-final-wrap * {
    box-sizing: border-box;
}

.bk-faq-final-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    --widgets-spacing: 0px !important;
}

.bk-faq-final-wrap > .e-con-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.bk-faq-final-wrap .elementor-widget-html,
.bk-faq-final-wrap
.elementor-widget-html
> .elementor-widget-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section */

.bk-faq-final {
    width: 100%;
    margin: 0;
    padding: 72px 22px 88px;

    background: #ffffff;
}

.bk-faq-final__inner {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

/* Heading */

.bk-faq-final__head {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
}

.bk-faq-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 6px 13px;

    border: 1px solid rgba(31, 105, 225, 0.11);
    border-radius: 100px;

    background: #eaf2ff;
    color: #1765dc;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.7;
}

.bk-faq-final__head h2 {
    margin: 0;

    color: #0b2855;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.bk-faq-final__head h2 span {
    color: #1765dc;
}

.bk-faq-final__head p {
    margin: 15px 0 0;

    color: #748198;
    font-size: 13.5px;
    line-height: 2.1;
}

/* Shortcuts */

.bk-faq-final__shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 1180px;

    margin: 38px auto 0;
}

.bk-faq-final__shortcut {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 82px;
    padding: 13px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.08),
            transparent 40%
        ),
        #ffffff;

    box-shadow:
        0 12px 31px rgba(24, 63, 119, 0.05);

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bk-faq-final__shortcut:hover {
    transform: translateY(-3px);

    border-color: rgba(23, 101, 220, 0.22);

    box-shadow:
        0 18px 38px rgba(24, 63, 119, 0.09);
}

.bk-faq-final__shortcut-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-faq-final__shortcut-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-final__shortcut > div {
    flex: 1 1 auto;
    min-width: 0;
}

.bk-faq-final__shortcut strong {
    display: block;
    margin-bottom: 2px;

    color: #26466f;
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-faq-final__shortcut span {
    display: block;

    color: #7b899c;
    font-size: 8.5px;
    line-height: 1.7;
}

.bk-faq-final__shortcut-arrow {
    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    fill: none;
    stroke: #1765dc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FAQ spacing */

.bk-faq-final .bk-faq-category {
    margin-top: 31px;
}

/* Store information */

.bk-faq-final__store {
    width: 100%;
    max-width: 1180px;

    margin: 28px auto 0;
    padding: 27px;

    border: 1px solid rgba(31, 105, 225, 0.10);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(31, 105, 225, 0.09),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f5f9ff
        );

    box-shadow:
        0 18px 44px rgba(24, 63, 119, 0.065);
}

.bk-faq-final__store-head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 19px;

    border-bottom: 1px solid #e2eaf4;
}

.bk-faq-final__store-icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #1765dc,
            #3c82eb
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(23, 101, 220, 0.22);
}

.bk-faq-final__store-icon svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-final__store-head > div {
    min-width: 0;
}

.bk-faq-final__store-head span {
    display: block;
    margin-bottom: 2px;

    color: #1765dc;
    font-size: 9.5px;
    font-weight: 750;
}

.bk-faq-final__store-head h3 {
    margin: 0;

    color: #0b2855;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-faq-final__store-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;

    margin-top: 19px;
}

.bk-faq-final__store-item {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 76px;
    padding: 12px;

    border: 1px solid rgba(31, 105, 225, 0.08);
    border-radius: 15px;

    background: #ffffff;

    text-decoration: none !important;
}

.bk-faq-final__store-item > span {
    display: flex;
    flex: 0 0 41px;
    align-items: center;
    justify-content: center;

    width: 41px;
    height: 41px;

    border-radius: 12px;

    background: #e8f1ff;
    color: #1765dc;
}

.bk-faq-final__store-item svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-final__store-item > div {
    min-width: 0;
}

.bk-faq-final__store-item small {
    display: block;
    margin-bottom: 2px;

    color: #8390a2;
    font-size: 8.3px;
    line-height: 1.6;
}

.bk-faq-final__store-item strong {
    display: block;

    overflow-wrap: anywhere;

    color: #294970;
    font-size: 9.5px;
    font-weight: 800;
    line-height: 1.8;
}

/* Final support */

.bk-faq-final__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: 100%;
    max-width: 1180px;

    margin: 28px auto 0;
    padding: 29px 30px;

    border: 1px solid rgba(31, 105, 225, 0.14);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(80, 143, 236, 0.25),
            transparent 37%
        ),
        linear-gradient(
            135deg,
            #071f43,
            #0b2855 56%,
            #123e78
        );

    box-shadow:
        0 22px 54px rgba(11, 40, 85, 0.19);
}

.bk-faq-final__support-content {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 0;
}

.bk-faq-final__support-icon {
    display: flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 19px;

    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
}

.bk-faq-final__support-icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bk-faq-final__support-content > div {
    min-width: 0;
}

.bk-faq-final__support-label {
    display: block;
    margin-bottom: 3px;

    color: #8dbaff;
    font-size: 10px;
    font-weight: 750;
}

.bk-faq-final__support h3 {
    margin: 0;

    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.7;
}

.bk-faq-final__support p {
    margin: 5px 0 0;

    color: rgba(226, 237, 253, 0.73);
    font-size: 10.4px;
    line-height: 1.9;
}

.bk-faq-final__support-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

/* Buttons */

.bk-faq-final__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: 0 17px;

    border-radius: 12px;

    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.bk-faq-final__button:hover {
    transform: translateY(-2px);
}

.bk-faq-final__button--primary {
    border: 1px solid #ffffff;

    background: #ffffff;
    color: #1765dc !important;
}

.bk-faq-final__button--primary:hover {
    background: #edf4ff;
}

.bk-faq-final__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

.bk-faq-final__button--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Search compatibility */

.bk-faq-final [data-bk-faq-item][hidden],
.bk-faq-final [data-bk-faq-section][hidden] {
    display: none !important;
}

.bk-faq-final
[data-bk-faq-item][data-bk-search-match="true"] {
    border-color: rgba(23, 101, 220, 0.30);

    box-shadow:
        0 14px 32px rgba(23, 101, 220, 0.09);
}

/* Tablet */

@media (max-width: 1050px) {

    .bk-faq-final__shortcuts,
    .bk-faq-final__store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .bk-faq-final {
        padding: 58px 18px 70px;
    }

    .bk-faq-final__support {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-faq-final__support-actions {
        justify-content: flex-start;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .bk-faq-final {
        padding: 45px 12px 58px;
    }

    .bk-faq-final__head h2 {
        font-size: 27px;
        line-height: 1.7;
    }

    .bk-faq-final__head p {
        font-size: 12.5px;
    }

    .bk-faq-final__shortcuts,
    .bk-faq-final__store-grid {
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 29px;
    }

    .bk-faq-final__store {
        padding: 21px 15px;
        border-radius: 20px;
    }

    .bk-faq-final__store-icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .bk-faq-final__support {
        gap: 21px;
        padding: 23px 18px;

        border-radius: 20px;
    }

    .bk-faq-final__support-content {
        align-items: flex-start;
    }

    .bk-faq-final__support-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .bk-faq-final__support-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bk-faq-final__button {
        width: 100%;
    }
}
/* =========================================================
   SHOP ARCHIVE V2 — BEHZADKALA SHOP EXPERIENCE
   Added: 2026-07-30
========================================================= */

.bk-shop-experience-active {
    --bkse-blue: #1765dc;
    --bkse-blue-dark: #0f55c2;
    --bkse-navy: #0b2855;
    --bkse-text: #66758c;
    --bkse-muted: #8793a4;
    --bkse-border: #e5ebf4;
    --bkse-soft: #f4f8ff;
    --bkse-bg: #f7f9fc;
}

.bk-shop-experience-active .bkse-hero,
.bk-shop-experience-active .bkse-hero *,
.bk-shop-experience-active .bkse-toolbar,
.bk-shop-experience-active .bkse-toolbar *,
.bk-shop-experience-active .bkse-active-filters,
.bk-shop-experience-active .bkse-active-filters *,
.bk-shop-experience-active .bkse-shop-help,
.bk-shop-experience-active .bkse-shop-help * {
    box-sizing: border-box;
}

/* Hide legacy category carousel and toolbar after JS identifies them. */
.bk-shop-experience-active .bkse-legacy-categories,
.bk-shop-experience-active .bkse-legacy-toolbar {
    display: none !important;
}


/* ---------- Hero ---------- */

.bkse-hero {
    width: 100%;
    margin: 10px 0 32px;
    padding: 0;
    direction: rtl;
}

.bkse-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
    align-items: center;
    gap: 34px;
    padding: 38px 42px;
    overflow: hidden;
    border: 1px solid var(--bkse-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 3% 8%, rgba(23, 101, 220, .10), transparent 29%),
        radial-gradient(circle at 95% 100%, rgba(23, 101, 220, .07), transparent 34%),
        #fff;
    box-shadow: 0 18px 48px rgba(15, 49, 97, .065);
}

.bkse-hero__content {
    min-width: 0;
}

.bkse-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    padding: 6px 13px;
    border: 1px solid rgba(23, 101, 220, .12);
    border-radius: 100px;
    background: #edf4ff;
    color: var(--bkse-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.8;
}

.bkse-hero h1 {
    margin: 0;
    color: var(--bkse-navy);
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 900;
    line-height: 1.55;
}

.bkse-hero__content > p {
    max-width: 780px;
    margin: 12px 0 0;
    color: var(--bkse-text);
    font-size: 13.5px;
    line-height: 2.1;
}

.bkse-product-search {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 760px;
    min-height: 56px;
    margin-top: 22px;
    padding: 5px 6px 5px 10px;
    border: 1px solid #dce5f2;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 23px rgba(21, 61, 118, .045);
}

.bkse-product-search__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bkse-blue);
}

.bkse-product-search__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkse-product-search input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0 8px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #183150;
    font-family: inherit;
    font-size: 13px;
    box-shadow: none;
}

.bkse-product-search button {
    min-height: 44px;
    margin: 0;
    padding: 0 19px;
    border: 0;
    border-radius: 11px;
    background: var(--bkse-blue);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
}

.bkse-product-search button:hover {
    transform: translateY(-1px);
    background: var(--bkse-blue-dark);
}

.bkse-hero__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.bkse-hero__quick-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 12px;
    border: 1px solid #e0e8f4;
    border-radius: 100px;
    background: #f8fbff;
    color: #4d617d;
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none !important;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.bkse-hero__quick-links a:hover {
    border-color: rgba(23, 101, 220, .25);
    background: #edf4ff;
    color: var(--bkse-blue);
}

.bkse-hero__summary {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(23, 101, 220, .12);
    border-radius: 23px;
    background: linear-gradient(145deg, #f9fbff, #eef5ff);
    text-align: center;
}

.bkse-hero__summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    border-radius: 19px;
    background: linear-gradient(145deg, var(--bkse-blue), #3c82eb);
    color: #fff;
    box-shadow: 0 12px 27px rgba(23, 101, 220, .22);
}

.bkse-hero__summary-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkse-hero__summary > span:not(.bkse-hero__summary-icon) {
    color: #75849a;
    font-size: 11px;
}

.bkse-hero__summary strong {
    margin: 3px 0;
    color: var(--bkse-navy);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.4;
}

.bkse-hero__summary small {
    color: #728097;
    font-size: 10px;
    line-height: 1.8;
}

/* ---------- Dynamic categories ---------- */

.bkse-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.bkse-category-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;
    min-width: 0;
    min-height: 92px;
    padding: 12px 14px;
    border: 1px solid var(--bkse-border);
    border-radius: 18px;
    background: #fff;
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(19, 55, 103, .035);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bkse-category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 101, 220, .20);
    box-shadow: 0 15px 32px rgba(19, 55, 103, .075);
}

.bkse-category-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f7fd;
}

.bkse-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.bkse-category-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bkse-blue);
}

.bkse-category-card__fallback svg,
.bkse-category-card__arrow svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkse-category-card__content {
    min-width: 0;
}

.bkse-category-card__content strong,
.bkse-category-card__content small {
    display: block;
}

.bkse-category-card__content strong {
    margin-bottom: 4px;
    color: #16365f;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.7;
}

.bkse-category-card__content small {
    color: var(--bkse-muted);
    font-size: 10px;
}

.bkse-category-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa7b8;
    transition: color .2s ease, transform .2s ease;
}

.bkse-category-card:hover .bkse-category-card__arrow {
    color: var(--bkse-blue);
    transform: translateX(-2px);
}

/* ---------- Active filters ---------- */

.bkse-active-filters {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    margin: 0 0 14px;
    padding: 13px 15px;
    border: 1px solid #e1e9f4;
    border-radius: 16px;
    background: #fff;
}

.bkse-active-filters > strong {
    flex: 0 0 auto;
    color: var(--bkse-navy);
    font-size: 11px;
}

.bkse-active-filters__items {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
}

.bkse-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 31px;
    padding: 4px 10px;
    border: 1px solid rgba(23, 101, 220, .12);
    border-radius: 100px;
    background: #edf4ff;
    color: #3f5878 !important;
    font-size: 10px;
    text-decoration: none !important;
}

.bkse-filter-chip b {
    color: #dc3847;
    font-size: 15px;
    line-height: 1;
}

.bkse-active-filters__clear {
    flex: 0 0 auto;
    color: #d23848 !important;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;
}

/* ---------- Toolbar ---------- */

.bkse-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin: 0 0 22px;
    padding: 14px 16px;
    border: 1px solid var(--bkse-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18, 54, 103, .035);
}

.bkse-toolbar__summary,
.bkse-toolbar__controls,
.bkse-per-page {
    display: flex;
    align-items: center;
}

.bkse-toolbar__summary {
    gap: 13px;
    min-width: 0;
}

.bkse-toolbar__count .woocommerce-result-count {
    margin: 0 !important;
    color: #65758d;
    font-size: 11px;
    line-height: 1.8;
}

.bkse-toolbar__controls {
    gap: 18px;
}

.bkse-per-page {
    gap: 7px;
}

.bkse-per-page > span {
    color: #7b8799;
    font-size: 10px;
}

.bkse-per-page a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e8f2;
    border-radius: 9px;
    background: #fff;
    color: #68768b !important;
    font-size: 10px;
    text-decoration: none !important;
}

.bkse-per-page a.is-active,
.bkse-per-page a:hover {
    border-color: var(--bkse-blue);
    background: var(--bkse-blue);
    color: #fff !important;
}

.bkse-ordering .woocommerce-ordering {
    margin: 0 !important;
}

.bkse-ordering select {
    min-width: 190px;
    min-height: 40px;
    margin: 0;
    padding: 7px 13px;
    border: 1px solid #dfe7f1;
    border-radius: 11px;
    background-color: #fff;
    color: #4f6078;
    font-family: inherit;
    font-size: 10.5px;
}

.bkse-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 7px 13px;
    border: 1px solid rgba(23, 101, 220, .15);
    border-radius: 11px;
    background: #edf4ff;
    color: var(--bkse-blue);
    font-family: inherit;
    cursor: pointer;
}

.bkse-filter-toggle svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkse-filter-toggle b {
    font-size: 10.5px;
}

/* ---------- Sidebar filters ---------- */

@media (min-width: 1025px) {
    .bk-shop-experience-active .area-sidebar-shop,
    .bk-shop-experience-active .wd-sidebar-shop,
    .bk-shop-experience-active .shop-sidebar,
    .bk-shop-experience-active aside.sidebar-container {
        position: relative;
    }

    .bk-shop-experience-active .area-sidebar-shop > .sidebar-inner,
    .bk-shop-experience-active .wd-sidebar-shop > .sidebar-inner,
    .bk-shop-experience-active .shop-sidebar > .sidebar-inner,
    .bk-shop-experience-active aside.sidebar-container > .sidebar-inner {
        position: sticky;
        top: 112px;
    }
}

.bk-shop-experience-active .area-sidebar-shop .widget,
.bk-shop-experience-active .wd-sidebar-shop .widget,
.bk-shop-experience-active .shop-sidebar .widget,
.bk-shop-experience-active .sidebar-container .widget {
    margin-bottom: 13px;
    padding: 20px 18px;
    border: 1px solid var(--bkse-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18, 54, 103, .035);
}

.bk-shop-experience-active .widget-title {
    color: var(--bkse-navy);
    font-size: 13px;
    font-weight: 850;
}

.bk-shop-experience-active .widget_layered_nav ul,
.bk-shop-experience-active .wd-filter-list {
    max-height: 260px;
    overflow: auto;
    scrollbar-width: thin;
}

/* ---------- Product cards ---------- */

.bk-shop-experience-active ul.products li.product,
.bk-shop-experience-active .wd-product {
    border-radius: 19px;
}

.bk-shop-experience-active .wd-product .product-wrapper,
.bk-shop-experience-active ul.products li.product .product-wrapper {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e8edf5;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(18, 54, 103, .035);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bk-shop-experience-active .wd-product:hover .product-wrapper,
.bk-shop-experience-active ul.products li.product:hover .product-wrapper {
    transform: translateY(-4px);
    border-color: rgba(23, 101, 220, .18);
    box-shadow: 0 16px 35px rgba(18, 54, 103, .08);
}

/* ---------- Bottom help ---------- */

.bkse-shop-help {
    width: 100%;
    margin: 55px 0 15px;
    padding: 38px;
    border: 1px solid var(--bkse-border);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0, rgba(23, 101, 220, .06), transparent 28%),
        #fff;
    box-shadow: 0 14px 38px rgba(17, 52, 94, .045);
}

.bkse-shop-help__header {
    max-width: 720px;
    margin: 0 auto 27px;
    text-align: center;
}

.bkse-shop-help__header > span {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 12px;
    border-radius: 100px;
    background: #edf4ff;
    color: var(--bkse-blue);
    font-size: 10px;
    font-weight: 800;
}

.bkse-shop-help__header h2 {
    margin: 0;
    color: var(--bkse-navy);
    font-size: clamp(23px, 2.4vw, 32px);
    font-weight: 900;
    line-height: 1.6;
}

.bkse-shop-help__header p {
    margin: 9px 0 0;
    color: var(--bkse-text);
    font-size: 12px;
    line-height: 2;
}

.bkse-shop-help__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bkse-shop-help__card {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 23px;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 17px;
    border: 1px solid #e5ebf4;
    border-radius: 17px;
    background: #fbfdff;
    color: inherit !important;
    text-decoration: none !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bkse-shop-help__card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 101, 220, .18);
    box-shadow: 0 13px 29px rgba(17, 52, 94, .07);
}

.bkse-shop-help__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #e8f1ff;
    color: var(--bkse-blue);
}

.bkse-shop-help__icon svg,
.bkse-shop-help__arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bkse-shop-help__content {
    min-width: 0;
}

.bkse-shop-help__content strong,
.bkse-shop-help__content small {
    display: block;
}

.bkse-shop-help__content strong {
    margin-bottom: 3px;
    color: #15345f;
    font-size: 12.5px;
    font-weight: 850;
}

.bkse-shop-help__content small {
    color: #7a8799;
    font-size: 10.5px;
    line-height: 1.8;
}

.bkse-shop-help__arrow {
    color: #9aa7b8;
}

.bkse-shop-help__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b2855, #145ec9);
}

.bkse-shop-help__support strong,
.bkse-shop-help__support span {
    display: block;
}

.bkse-shop-help__support strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
}

.bkse-shop-help__support span {
    color: rgba(255, 255, 255, .74);
    font-size: 10.5px;
}

.bkse-shop-help__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.bkse-shop-help__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 11px;
    background: rgba(255, 255, 255, .10);
    color: #fff !important;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;
}

.bkse-shop-help__actions a:first-child {
    background: #fff;
    color: var(--bkse-blue) !important;
}

/* ---------- Mobile filter drawer ---------- */

.bkse-filter-drawer__header,
.bkse-filter-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .bkse-hero__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bkse-hero__summary {
        display: grid;
        grid-template-columns: 58px auto auto minmax(0, 1fr);
        min-height: 0;
        gap: 12px;
        text-align: right;
    }

    .bkse-hero__summary-icon {
        width: 58px;
        height: 58px;
        margin: 0;
        grid-row: 1 / 3;
    }

    .bkse-hero__summary strong {
        font-size: 27px;
    }

    .bkse-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bkse-filter-toggle {
        display: inline-flex;
    }

    .bkse-filter-drawer {
        position: fixed !important;
        z-index: 100003 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        display: block !important;
        width: min(390px, 91vw) !important;
        max-width: none !important;
        height: 100dvh !important;
        margin: 0 !important;
        padding: 0 16px 25px !important;
        overflow: auto !important;
        background: #f7f9fc !important;
        box-shadow: -18px 0 48px rgba(7, 31, 70, .18) !important;
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .28s ease, visibility .28s ease;
    }

    .bkse-filter-open .bkse-filter-drawer {
        transform: translateX(0);
        visibility: visible;
    }

    .bkse-filter-drawer__header {
        position: sticky;
        z-index: 3;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 70px;
        margin: 0 -16px 18px;
        padding: 12px 18px;
        border-bottom: 1px solid #e2e9f3;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(10px);
    }

    .bkse-filter-drawer__header strong {
        color: var(--bkse-navy);
        font-size: 15px;
    }

    .bkse-filter-drawer__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid #e1e8f2;
        border-radius: 12px;
        background: #fff;
        color: #d13848;
        font-size: 24px;
        cursor: pointer;
    }

    .bkse-filter-overlay {
        position: fixed;
        z-index: 100002;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(4, 20, 48, .47);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .bkse-filter-open .bkse-filter-overlay {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    body.bkse-filter-open {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .bkse-hero {
        margin-top: 0;
        margin-bottom: 22px;
    }

    .bkse-hero__inner {
        padding: 27px 16px;
        border-radius: 21px;
    }

    .bkse-hero__content {
        text-align: center;
    }

    .bkse-hero h1 {
        font-size: 27px;
    }

    .bkse-hero__content > p {
        font-size: 12px;
        line-height: 2;
    }

    .bkse-product-search {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 6px 8px;
    }

    .bkse-product-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .bkse-hero__quick-links {
        justify-content: center;
    }

    .bkse-hero__summary {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        padding: 18px;
        border-radius: 18px;
    }

    .bkse-hero__summary-icon {
        width: 52px;
        height: 52px;
    }

    .bkse-hero__summary small {
        grid-column: 2 / -1;
    }

    .bkse-categories {
        display: flex;
        gap: 10px;
        margin-right: -2px;
        margin-left: -2px;
        padding: 2px 2px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .bkse-category-card {
        flex: 0 0 265px;
        scroll-snap-align: start;
    }

    .bkse-active-filters {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bkse-active-filters__items {
        order: 3;
        flex-basis: 100%;
    }

    .bkse-active-filters__clear {
        margin-right: auto;
    }

    .bkse-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 11px;
        padding: 12px;
    }

    .bkse-toolbar__summary,
    .bkse-toolbar__controls {
        justify-content: space-between;
        width: 100%;
    }

    .bkse-per-page {
        display: none;
    }

    .bkse-ordering,
    .bkse-ordering .woocommerce-ordering,
    .bkse-ordering select {
        width: 100%;
    }

    .bkse-ordering select {
        min-width: 0;
    }

    .bkse-shop-help {
        margin-top: 38px;
        padding: 28px 15px;
        border-radius: 21px;
    }

    .bkse-shop-help__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .bkse-shop-help__support {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .bkse-shop-help__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .bkse-category-card {
        flex-basis: 245px;
        grid-template-columns: 56px minmax(0, 1fr) 20px;
    }

    .bkse-category-card__media {
        width: 56px;
        height: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bk-shop-experience-active *,
    .bk-shop-experience-active *::before,
    .bk-shop-experience-active *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   SHOP ARCHIVE V2.1 — WOODMART COMPATIBILITY PATCH
   Added: 2026-07-30
========================================================= */

.bkse-template-source,
#bkse-template-source {
    display: none !important;
}

.bk-shop-experience-active .bkse-legacy-categories-wrap,
.bk-shop-experience-active .bkse-legacy-title-categories {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
}

.bk-shop-experience-active .bkse-legacy-categories {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent a blank category shell after the original list is hidden. */
.bk-shop-experience-active .bkse-legacy-categories-wrap:empty,
.bk-shop-experience-active .bkse-legacy-categories-wrap > .bkse-legacy-categories:only-child {
    display: none !important;
}

/* The custom hero spans the full archive container above content/sidebar. */
.bk-shop-experience-active .bkse-hero {
    clear: both;
    max-width: none;
}

/* Keep custom controls immediately above the actual product grid. */
.bk-shop-experience-active .bkse-active-filters + .bkse-toolbar {
    margin-top: 0;
}

.bk-shop-experience-active .bkse-toolbar + ul.products,
.bk-shop-experience-active .bkse-toolbar + .products {
    clear: both;
}

/* Hide the old Woodmart loop header only after JS/PHP has placed our toolbar. */
.bk-shop-experience-active:has(.bkse-toolbar) .bkse-legacy-toolbar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
}

/* Fallback for browsers without :has() support: class is added only by BKSE JS. */
.bk-shop-experience-active .bkse-legacy-toolbar {
    display: none !important;
}

@media (max-width: 1024px) {
    .bk-shop-experience-active .bkse-hero {
        width: 100%;
    }
}

/* =========================================================
   SHOP ARCHIVE V2.2 — FINAL WOODMART CLEANUP
   Added: 2026-07-30
========================================================= */

/* Hide only the old category cards; mixed product loops remain intact. */
.bk-shop-experience-active .bkse-legacy-category-item {
    display: none !important;
}

.bk-shop-experience-active .bkse-legacy-category-shell--empty,
.bk-shop-experience-active .bkse-legacy-category-wrap,
.bk-shop-experience-active .bkse-legacy-title-categories {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
}

/* Remove Woodmart's duplicate archive title, breadcrumb and loop controls. */
.bk-shop-experience-active .bkse-legacy-toolbar,
.bk-shop-experience-active .bkse-legacy-archive-heading,
.bk-shop-experience-active .bkse-legacy-page-title {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
}

/* Defensive selectors for old Woodmart controls before JavaScript completes. */
.bk-shop-experience-v102 .shop-loop-head,
.bk-shop-experience-v102 .wd-shop-tools,
.bk-shop-experience-v102 .wd-products-toolbar,
.bk-shop-experience-v102 .wd-loop-header,
.bk-shop-experience-v102 .shop-loop-header {
    display: none !important;
}

/* Never hide controls rendered inside the BehzadKala toolbar. */
.bk-shop-experience-v102 .bkse-toolbar,
.bk-shop-experience-v102 .bkse-toolbar .woocommerce-ordering,
.bk-shop-experience-v102 .bkse-toolbar .woocommerce-result-count {
    display: flex !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
}

.bk-shop-experience-v102 .bkse-toolbar .woocommerce-result-count {
    display: block !important;
}

/* Center small category sets instead of leaving empty grid columns. */
@media (min-width: 768px) {
    .bkse-categories[data-count="1"] {
        grid-template-columns: minmax(300px, 520px);
        justify-content: center;
        max-width: 560px;
        margin-right: auto;
        margin-left: auto;
    }

    .bkse-categories[data-count="2"] {
        grid-template-columns: repeat(2, minmax(300px, 520px));
        justify-content: center;
        max-width: 1060px;
        margin-right: auto;
        margin-left: auto;
    }

    .bkse-categories[data-count="3"] {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        max-width: 1260px;
        margin-right: auto;
        margin-left: auto;
    }
}

/* The lower guidance section spans the same archive container as the hero. */
.bk-shop-experience-v102 .bkse-shop-help {
    clear: both;
    max-width: none;
}

/* Avoid residual blank space from legacy category/title wrappers. */
.bk-shop-experience-v102 .bkse-legacy-category-wrap + .bkse-toolbar,
.bk-shop-experience-v102 .bkse-legacy-page-title + .bkse-toolbar {
    margin-top: 0 !important;
}

@media (max-width: 767px) {
    .bkse-categories[data-count] {
        max-width: none;
        margin-right: -2px;
        margin-left: -2px;
    }

    .bk-shop-experience-v102 .bkse-toolbar,
    .bk-shop-experience-v102 .bkse-toolbar .woocommerce-ordering {
        width: 100% !important;
    }
}



/* =========================================================
   SHOP ARCHIVE V2.3 — TITLE & SPACING CLEANUP
   Added: 2026-07-30
========================================================= */

.bk-shop-experience-v103 .bkse-legacy-residual-title,
.bk-shop-experience-v103 .bkse-legacy-residual-title-wrap,
.bk-shop-experience-v103 .bkse-legacy-empty-wrap {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
}

/* Remove Woodmart's large archive offset after the custom hero/categories. */
.bk-shop-experience-v103 .bkse-hero {
    margin-bottom: 18px !important;
}

.bk-shop-experience-v103 .bkse-hero + .bkse-archive-layout,
.bk-shop-experience-v103 .bkse-hero + .content-layout-wrapper,
.bk-shop-experience-v103 .bkse-hero + .wd-content-layout,
.bk-shop-experience-v103 .bkse-hero + .shop-content-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bk-shop-experience-v103 .bkse-archive-layout,
.bk-shop-experience-v103 .bkse-products-column,
.bk-shop-experience-v103 .bkse-archive-layout .site-content,
.bk-shop-experience-v103 .bkse-archive-layout .content-area,
.bk-shop-experience-v103 .bkse-archive-layout .shop-content-area,
.bk-shop-experience-v103 .bkse-archive-layout .wd-shop-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Keep toolbar and sidebar aligned at the top of the actual product region. */
.bk-shop-experience-v103 .bkse-products-column > .bkse-active-filters:first-child,
.bk-shop-experience-v103 .bkse-products-column > .bkse-toolbar:first-child {
    margin-top: 0 !important;
}

.bk-shop-experience-v103 .bkse-archive-layout {
    align-items: flex-start !important;
}

/* Defensive title selectors while JavaScript is initializing. */
.bk-shop-experience-v103 .shop-content-area > h1:first-child,
.bk-shop-experience-v103 .shop-content-area > h2:first-child,
.bk-shop-experience-v103 .content-area > h1:first-child,
.bk-shop-experience-v103 .content-area > h2:first-child,
.bk-shop-experience-v103 .wd-shop-content > h1:first-child,
.bk-shop-experience-v103 .wd-shop-content > h2:first-child {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .bk-shop-experience-v103 .bkse-hero {
        margin-bottom: 14px !important;
    }
}
