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

.bk-reservation {
  --bk-navy: #0b2d63;
  --bk-teal: #12a8a2;
  --bk-teal-hover: #0f918c;
  --bk-orange: #ff6b0a;
  --bk-text: #1d2433;
  --bk-muted: #6b7280;
  --bk-border: #e9edf3;
  width: 100%;
  padding: 24px;
  color: var(--bk-text);
  background: #fff;
  border: 1px solid var(--bk-border);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(11, 45, 99, 0.07);
  font-family: "Vazirmatn", Tahoma, sans-serif;
}

.bk-reservation__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.bk-reservation__eyebrow {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 8px;
  color: #087b77;
  background: #e8f7f6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.bk-reservation__heading h3 {
  margin: 0;
  color: var(--bk-navy);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.55;
}

.bk-reservation__secure {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--bk-teal);
  background: #e8f7f6;
  border-radius: 14px;
}

.bk-reservation__secure svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-reservation__existing {
  margin: 0 0 16px;
  padding: 11px 14px;
  color: var(--bk-navy);
  background: #f4f8fc;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.bk-reservation__unit-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -6px 0 18px;
  padding: 12px 14px;
  color: var(--bk-muted);
  background: #eef9f8;
  border: 1px solid #d7efed;
  border-radius: 13px;
  font-size: 13px;
}

.bk-reservation__unit-price strong {
  color: var(--bk-teal-hover);
  font-size: 17px;
  font-weight: 900;
}

.bk-reservation__form {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(120px, 0.5fr);
  gap: 14px;
}

.bk-reservation__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  color: var(--bk-navy);
  font-size: 13px;
  font-weight: 700;
}

.bk-reservation__field select,
.bk-reservation__field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  color: var(--bk-text);
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 13px;
  outline: none;
  font: inherit;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bk-reservation__field select:focus,
.bk-reservation__field input:focus {
  border-color: var(--bk-teal);
  box-shadow: 0 0 0 4px rgba(18, 168, 162, 0.14);
}

.bk-reservation__deposit {
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.bk-reservation__deposit legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  color: var(--bk-navy);
  font-size: 13px;
  font-weight: 800;
}

.bk-reservation__deposit legend small {
  color: var(--bk-muted);
  font-size: 11px;
  font-weight: 500;
}

.bk-reservation__deposit-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.bk-reservation__deposit-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.bk-reservation__deposit-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.bk-reservation__deposit-options label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: var(--bk-navy);
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bk-reservation__deposit-options label:hover > span {
  border-color: #8ed8d3;
  transform: translateY(-1px);
}

.bk-reservation__deposit-options input:checked + span {
  color: var(--bk-teal-hover);
  background: #eaf9f7;
  border-color: var(--bk-teal);
  box-shadow: 0 0 0 3px rgba(18, 168, 162, 0.12);
}

.bk-reservation__deposit-options input:focus-visible + span {
  outline: 3px solid rgba(18, 168, 162, 0.25);
  outline-offset: 2px;
}

.bk-reservation__package,
.bk-reservation__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 11px 14px;
  background: #f8fafc;
  border: 1px solid var(--bk-border);
  border-radius: 13px;
  color: var(--bk-muted);
  font-size: 13px;
}

.bk-reservation__package strong,
.bk-reservation__summary strong {
  color: var(--bk-navy);
  font-size: 15px;
  font-weight: 850;
}

.bk-reservation__summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
}

.bk-reservation__note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--bk-muted);
  font-size: 12px;
  line-height: 1.85;
}

.bk-reservation__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
}

.bk-reservation__submit,
.bk-reservation__cancel,
.bk-reservation-login__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.bk-reservation__submit {
  flex: 1 1 auto;
  color: #fff;
  background: var(--bk-teal);
  border: 1px solid var(--bk-teal);
}

.bk-reservation__submit:hover {
  color: #fff;
  background: var(--bk-teal-hover);
  border-color: var(--bk-teal-hover);
  transform: translateY(-1px);
}

.bk-reservation__cancel {
  flex: 0 0 auto;
  color: #b42318;
  background: #fff;
  border: 1px solid #f0b4ae;
}

.bk-reservation__cancel:hover {
  background: #fff4f2;
  border-color: #e68a80;
}

.bk-reservation__submit:disabled,
.bk-reservation__cancel:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.bk-reservation__feedback {
  grid-column: 1 / -1;
  min-height: 0;
  color: var(--bk-muted);
  font-size: 13px;
  font-weight: 700;
}

.bk-reservation__feedback:empty {
  display: none;
}

.bk-reservation__feedback.is-success {
  color: #087a45;
}

.bk-reservation__feedback.is-error {
  color: #b42318;
}

.bk-reservation-login,
.bk-reservation-notice {
  width: 100%;
  padding: 18px;
  color: #0b2d63;
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 18px;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  text-align: right;
}

.bk-reservation-login p {
  margin: 0 0 12px;
}

.bk-reservation-login__link {
  color: #fff;
  background: #12a8a2;
}

.bk-reservation-notice--error {
  color: #b42318;
  background: #fff7f6;
  border-color: #f5c5c0;
}

.bk-payment-state {
  display:flex; flex-direction:column; align-items:flex-start; gap:8px;
  width:100%; padding:22px; color:#1d2433; background:#fff;
  border:1px solid #e9edf3; border-radius:20px;
  box-shadow:0 10px 28px rgba(11,45,99,.06);
  font-family:"Vazirmatn",Tahoma,sans-serif;
}
.bk-payment-state strong { color:#0b2d63; font-size:18px; }
.bk-payment-state span { color:#6b7280; font-size:13px; line-height:1.8; }
.bk-payment-state a { display:inline-flex; align-items:center; justify-content:center; min-height:46px; margin-top:5px; padding:0 22px; color:#fff!important; background:#12a8a2; border-radius:14px; font-size:14px; font-weight:800; text-decoration:none!important; }
.bk-payment-state.is-paid { background:#f3fbf7; border-color:#b7e6cc; }
.bk-payment-state.is-deposit-pending { background:#fffaf2; border-color:#f3d5a5; }
.bk-reservation__form--cancel-only { margin-top:10px; }
.bk-reservation__form--cancel-only .bk-reservation__cancel { width:100%; }

@media (max-width: 767px) {
  .bk-reservation {
    padding: 18px 15px;
    border-radius: 20px;
  }

  .bk-reservation__heading h3 {
    font-size: 20px;
  }

  .bk-reservation__secure {
    width: 42px;
    height: 42px;
  }

  .bk-reservation__form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bk-reservation__field,
  .bk-reservation__deposit,
  .bk-reservation__summary,
  .bk-reservation__note,
  .bk-reservation__actions,
  .bk-reservation__feedback {
    grid-column: 1;
  }

  .bk-reservation__actions {
    flex-direction: column;
  }

  .bk-reservation__deposit legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .bk-reservation__submit,
  .bk-reservation__cancel {
    width: 100%;
  }
}

/* Featured campaign card — Elementor hero left column. */
.bk-hero-card,
.bk-hero-card * { box-sizing: border-box; }
.bk-hero-card {
  --bk-navy:#0b2d63; --bk-teal:#12a8a2; --bk-teal-dark:#0d817d;
  --bk-orange:#ff6b0a; --bk-muted:#6b7280; --bk-border:#e9edf3;
  display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.15fr);
  width:100%; min-height:440px; overflow:hidden; background:#fff;
  border:1px solid var(--bk-border); border-radius:24px;
  box-shadow:0 18px 48px rgba(11,45,99,.11);
  font-family:"Vazirmatn",Tahoma,sans-serif;
}
.bk-hero-card__media { min-width:0; padding:12px; background:#f7f5f1; }
.bk-hero-card__image { width:100%!important; height:100%!important; min-height:416px; display:block; object-fit:cover; border-radius:18px; }
.bk-hero-card__content { min-width:0; display:flex; flex-direction:column; padding:24px 22px 20px; color:#1d2433; }
.bk-hero-card__status { align-self:flex-start; display:inline-flex; align-items:center; gap:7px; padding:6px 11px; color:var(--bk-navy); background:#eef3f8; border-radius:999px; font-size:12px; font-weight:750; }
.bk-hero-card__status i { width:8px; height:8px; background:var(--bk-navy); border-radius:50%; }
.bk-hero-card__title { margin:14px 0 0!important; color:var(--bk-navy)!important; font-size:clamp(18px,1.65vw,23px)!important; font-weight:850!important; line-height:1.75!important; }
.bk-hero-card__prices { margin-top:13px; }
.bk-hero-card__group-price { display:block; color:var(--bk-teal-dark); font-size:clamp(25px,2.5vw,36px); font-weight:900; line-height:1.5; }
.bk-hero-card__unit-price-label { display:block; margin-top:-3px; color:var(--bk-muted); font-size:12px; font-weight:700; }
.bk-hero-card__group-price .woocommerce-Price-currencySymbol { font-size:.48em; margin-right:5px; }
.bk-hero-card__price-meta { display:flex; align-items:center; gap:10px; margin-top:3px; color:var(--bk-muted); font-size:13px; }
.bk-hero-card__price-meta del { opacity:.8; }
.bk-hero-card__discount { order:-1; padding:5px 9px; color:#fff; background:var(--bk-orange); border-radius:8px; font-size:12px; font-weight:800; }
.bk-hero-card__progress { margin-top:19px; }
.bk-hero-card__track { position:relative; height:30px; overflow:hidden; background:#dff4f2; border-radius:999px; }
.bk-hero-card__track span { position:absolute; inset:0 auto 0 0; min-width:8px; background:var(--bk-teal); border-radius:inherit; transition:width .45s ease; }
.bk-hero-card__track b { position:absolute; inset:0 10px 0 auto; z-index:1; display:flex; align-items:center; color:#fff; font-size:13px; font-weight:900; text-shadow:0 1px 2px rgba(0,0,0,.12); }
.bk-hero-card__progress-meta { display:flex; justify-content:space-between; gap:12px; margin-top:8px; color:var(--bk-muted); font-size:11px; font-weight:650; }
.bk-hero-card__facts { display:grid; grid-template-columns:1fr 1fr; gap:0; margin-top:auto; padding:15px 0; border-top:1px solid var(--bk-border); }
.bk-hero-card__facts > span { display:flex; align-items:center; justify-content:center; gap:6px; min-width:0; color:var(--bk-muted); font-size:11px; white-space:nowrap; }
.bk-hero-card__facts > span + span { border-right:1px solid var(--bk-border); }
.bk-hero-card__facts svg { flex:0 0 auto; width:24px; height:24px; fill:none; stroke:var(--bk-teal); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.bk-hero-card__facts b { color:var(--bk-navy); font-size:12px; }
.bk-hero-card__cta { display:flex; align-items:center; justify-content:center; width:100%; min-height:48px; padding:0 18px; color:#fff!important; background:var(--bk-teal); border-radius:14px; font-size:14px; font-weight:850; text-decoration:none!important; transition:background-color .18s ease,transform .18s ease; }
.bk-hero-card__cta:hover { background:var(--bk-teal-dark); transform:translateY(-1px); }

@media (max-width:1024px) {
  .bk-hero-card { min-height:390px; }
  .bk-hero-card__content { padding:20px 18px 16px; }
  .bk-hero-card__image { min-height:366px; }
  .bk-hero-card__facts { grid-template-columns:1fr; gap:8px; }
  .bk-hero-card__facts > span + span { border-right:0; }
}
@media (max-width:767px) {
  .bk-hero-card { grid-template-columns:1fr; border-radius:20px; }
  .bk-hero-card__media { padding:9px; }
  .bk-hero-card__image { height:auto!important; min-height:0; aspect-ratio:4/3; border-radius:15px; }
  .bk-hero-card__content { padding:18px 15px 15px; }
  .bk-hero-card__title { margin-top:11px!important; font-size:19px!important; }
  .bk-hero-card__group-price { font-size:28px; }
  .bk-hero-card__track { height:28px; }
  .bk-hero-card__facts { grid-template-columns:1fr 1fr; margin-top:17px; gap:0; }
  .bk-hero-card__facts > span { white-space:normal; text-align:center; }
  .bk-hero-card__facts > span + span { border-right:1px solid var(--bk-border); }
}
@media (max-width:380px) {
  .bk-hero-card__facts { grid-template-columns:1fr; gap:10px; }
  .bk-hero-card__facts > span + span { border-right:0; }
}

/* Modular single campaign sections — v1.4.0 */
.bk-account-button {
  box-sizing:border-box;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:8px 16px;
  gap:7px;
  border:1.5px solid #082e68;
  border-radius:12px;
  color:#082e68 !important;
  background:#fff;
  font-family:"Vazirmatn",Tahoma,sans-serif;
  font-size:13px;
  font-weight:850;
  line-height:1;
  text-decoration:none !important;
  white-space:nowrap;
  transition:color .2s ease,background-color .2s ease,border-color .2s ease,transform .2s ease;
}
.bk-account-button svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.bk-account-button:hover { color:#fff !important; border-color:#078e89; background:#078e89; transform:translateY(-1px); }
.bk-account-button.is-logged-in { color:#067e79 !important; border-color:#a9deda; background:#eefafa; }
.bk-account-button.is-logged-in:hover { color:#fff !important; border-color:#078e89; background:#078e89; }
@media (max-width:767px) {
  .bk-account-button { min-height:39px; padding:7px 12px; border-radius:10px; font-size:12px; }
  .bk-account-button svg { width:16px; height:16px; }
}

.bk-campaign-breadcrumbs,
.bk-campaign-overview,
.bk-campaign-trust,
.bk-campaign-section { box-sizing:border-box; width:100%; font-family:"Vazirmatn",Tahoma,sans-serif; }
.bk-campaign-breadcrumbs { display:flex; align-items:center; flex-wrap:wrap; gap:9px; color:#7a8799; font-size:12px; }
.bk-campaign-breadcrumbs a { color:#50647f; text-decoration:none; }
.bk-campaign-breadcrumbs strong { color:#0b2d63; font-weight:750; }
.bk-campaign-overview { --navy:#082e68; --teal:#09aaa4; --orange:#ff5a1f; color:#1d2433; }
.bk-campaign-overview__heading { position:relative; padding-top:44px; }
.bk-campaign-overview__status { position:absolute; top:0; right:0; display:inline-flex; align-items:center; gap:7px; padding:7px 12px; border-radius:999px; color:var(--navy); background:#edf3f8; font-size:12px; font-weight:800; }
.bk-campaign-overview__status i { width:8px; height:8px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(9,170,164,.12); }
.bk-campaign-overview__heading h1 { margin:0; color:var(--navy); font-size:clamp(26px,3vw,42px); font-weight:900; line-height:1.55; }
.bk-campaign-overview__heading p { max-width:760px; margin:10px 0 22px; color:#667085; font-size:15px; line-height:2; }
.bk-campaign-overview__deal { display:grid; grid-template-columns:minmax(260px,.95fr) minmax(260px,1.05fr); overflow:hidden; border:1px solid #e1e8f0; border-radius:22px; background:#fff; box-shadow:0 14px 34px rgba(8,46,104,.08); }
.bk-campaign-overview__media { min-height:340px; padding:12px; background:#f6f7f5; }
.bk-campaign-overview__media a,.bk-campaign-overview__media img { display:block; width:100%; height:100%; }
.bk-campaign-overview__image { min-height:316px; object-fit:cover; border-radius:16px; }
.bk-campaign-overview__price { display:flex; flex-direction:column; justify-content:center; padding:25px; }
.bk-campaign-overview__price>span { color:var(--navy); font-size:13px; font-weight:800; }
.bk-campaign-overview__price>strong { margin-top:3px; color:#078e89; font-size:clamp(30px,3vw,44px); font-weight:950; line-height:1.45; }
.bk-campaign-overview__price>b { color:var(--navy); font-size:15px; }
.bk-campaign-overview__price>p { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin:18px 0; color:#788598; font-size:12px; }
.bk-campaign-overview__price del { font-size:15px; font-weight:750; }
.bk-campaign-overview__price em { padding:6px 10px; color:#fff; background:var(--orange); border-radius:8px; font-style:normal; font-weight:850; }
.bk-campaign-overview__track { position:relative; height:28px; overflow:hidden; background:#dff3f2; border-radius:999px; }
.bk-campaign-overview__track>span { position:absolute; inset:0 auto 0 0; min-width:6px; background:var(--teal); border-radius:inherit; }
.bk-campaign-overview__track>b { position:absolute; inset:0 10px 0 auto; display:flex; align-items:center; color:#082e68; font-size:12px; }
.bk-campaign-overview__price dl { display:grid; grid-template-columns:1fr 1fr; margin:13px 0 0; }
.bk-campaign-overview__price dl div { padding:8px 12px; text-align:center; }
.bk-campaign-overview__price dl div+div { border-right:1px solid #e3e9f0; }
.bk-campaign-overview__price dt { color:#8390a2; font-size:11px; }
.bk-campaign-overview__price dd { margin:3px 0 0; color:var(--navy); font-size:13px; font-weight:850; }
.bk-campaign-overview__facts { display:grid; grid-template-columns:repeat(3,1fr); margin-top:14px; overflow:hidden; border:1px solid #e3e9f0; border-radius:14px; background:#fff; }
.bk-campaign-overview__facts>div { padding:12px 14px; text-align:center; }
.bk-campaign-overview__facts>div+div { border-right:1px solid #e3e9f0; }
.bk-campaign-overview__facts span { display:block; color:#8390a2; font-size:11px; }
.bk-campaign-overview__facts strong { display:block; margin-top:4px; color:var(--navy); font-size:13px; }
.bk-campaign-trust { display:grid; grid-template-columns:repeat(3,1fr); gap:0; padding:18px; border:1px solid #e3e9f0; border-radius:20px; background:#fff; box-shadow:0 10px 28px rgba(8,46,104,.05); }
.bk-campaign-trust>div { display:grid; grid-template-columns:auto 1fr; column-gap:10px; padding:5px 20px; }
.bk-campaign-trust>div+div { border-right:1px solid #e3e9f0; }
.bk-campaign-trust i { grid-row:1/3; display:grid; place-items:center; width:38px; height:38px; color:#09aaa4; background:#eaf8f7; border-radius:50%; font-style:normal; font-weight:900; }
.bk-campaign-trust strong { color:#082e68; font-size:14px; }
.bk-campaign-trust span { color:#7c899b; font-size:11px; }
.bk-campaign-section { padding:34px 28px; border:1px solid #e6ebf1; border-radius:22px; background:#fff; }
.bk-campaign-section>header { margin-bottom:25px; text-align:center; }
.bk-campaign-section>header span { color:#09aaa4; font-size:12px; font-weight:800; }
.bk-campaign-section>header h2 { margin:5px 0 0; color:#082e68; font-size:clamp(23px,2.5vw,32px); font-weight:900; }
.bk-campaign-benefits__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.bk-campaign-benefits article { padding:12px 22px; text-align:center; }
.bk-campaign-benefits article+article { border-right:1px solid #e7ebf1; }
.bk-campaign-benefits i { display:grid; place-items:center; width:38px; height:38px; margin:0 auto 10px; color:#09aaa4; background:#edf9f8; border-radius:50%; font-style:normal; font-weight:900; }
.bk-campaign-benefits strong { color:#082e68; font-size:15px; }
.bk-campaign-benefits p { margin:7px 0 0; color:#778497; font-size:12px; line-height:1.9; }
.bk-campaign-product__content { color:#53647a; font-size:14px; line-height:2.05; }
.bk-campaign-product__specs { display:grid; grid-template-columns:repeat(4,1fr); margin:22px 0 0; border:1px solid #e3e9f0; border-radius:15px; }
.bk-campaign-product__specs>div { padding:14px; text-align:center; }
.bk-campaign-product__specs>div+div { border-right:1px solid #e3e9f0; }
.bk-campaign-product__specs dt { color:#082e68; font-size:12px; font-weight:800; }
.bk-campaign-product__specs dd { margin:4px 0 0; color:#768397; font-size:12px; }
.bk-campaign-steps ol { display:grid; grid-template-columns:repeat(4,1fr); margin:0; padding:0; list-style:none; counter-reset:none; }
.bk-campaign-steps li { position:relative; padding:8px 22px; text-align:center; }
.bk-campaign-steps li+li { border-right:1px dashed #cfd9e5; }
.bk-campaign-steps li>b { display:grid; place-items:center; width:34px; height:34px; margin:0 auto 12px; color:#fff; background:#09aaa4; border-radius:50%; }
.bk-campaign-steps li>strong { color:#082e68; font-size:14px; }
.bk-campaign-steps li>p { color:#788598; font-size:12px; line-height:1.9; }
.bk-campaign-delivery>div { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid #dcebea; border-radius:15px; background:#f7fbfb; }
.bk-campaign-delivery p { display:flex; flex-direction:column; gap:5px; margin:0; padding:16px; text-align:center; }
.bk-campaign-delivery p+p { border-right:1px solid #dcebea; }
.bk-campaign-delivery strong { color:#082e68; font-size:13px; }
.bk-campaign-delivery span { color:#667085; font-size:12px; }
.bk-campaign-faq details { border:1px solid #e3e9f0; background:#fff; }
.bk-campaign-faq details:first-of-type { border-radius:14px 14px 0 0; }
.bk-campaign-faq details:last-of-type { border-radius:0 0 14px 14px; }
.bk-campaign-faq details+details { border-top:0; }
.bk-campaign-faq summary { padding:15px 18px; color:#082e68; cursor:pointer; font-size:13px; font-weight:750; }
.bk-campaign-faq details p { margin:0; padding:0 18px 17px; color:#667085; font-size:12px; line-height:1.9; }
@media (max-width:1024px) {
  .bk-campaign-overview__deal { grid-template-columns:1fr; }
  .bk-campaign-overview__media { min-height:300px; }
  .bk-campaign-benefits__grid,.bk-campaign-product__specs,.bk-campaign-steps ol { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:767px) {
  .bk-campaign-overview__heading h1 { font-size:25px; }
  .bk-campaign-overview__media { min-height:0; }
  .bk-campaign-overview__image { min-height:0; aspect-ratio:1/1; }
  .bk-campaign-overview__price { padding:20px 16px; }
  .bk-campaign-overview__facts,.bk-campaign-trust,.bk-campaign-benefits__grid,.bk-campaign-product__specs,.bk-campaign-steps ol,.bk-campaign-delivery>div { grid-template-columns:1fr; }
  .bk-campaign-overview__facts>div+div,.bk-campaign-trust>div+div,.bk-campaign-benefits article+article,.bk-campaign-product__specs>div+div,.bk-campaign-steps li+li,.bk-campaign-delivery p+p { border-right:0; border-top:1px solid #e3e9f0; }
  .bk-campaign-section { padding:27px 17px; border-radius:18px; }
}

/* Single campaign visual refresh — v1.5.0 */
.bk-campaign-section {
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(8,46,104,.045);
}
.bk-campaign-section::before {
  content:"";
  position:absolute;
  top:0;
  right:0;
  left:0;
  height:4px;
  background:linear-gradient(90deg,#18b8f2,#09aaa4);
}
.bk-campaign-benefits::before { background:linear-gradient(90deg,#ff8c1a,#ffc15b); }
.bk-campaign-product::before { background:linear-gradient(90deg,#18b8f2,#09aaa4,#ff8c1a); }
.bk-campaign-steps::before { background:linear-gradient(90deg,#082e68,#18b8f2); }
.bk-campaign-delivery::before { background:linear-gradient(90deg,#09aaa4,#8eddd8); }
.bk-campaign-faq::before { background:linear-gradient(90deg,#ff8c1a,#18b8f2); }
.bk-campaign-benefits article:nth-child(1) i { color:#e97400; background:#fff1df; }
.bk-campaign-benefits article:nth-child(2) i { color:#078e89; background:#e7f8f6; }
.bk-campaign-benefits article:nth-child(3) i { color:#087ec0; background:#e8f6fd; }
.bk-campaign-benefits article:nth-child(4) i { color:#6d55bd; background:#f0ecff; }
.bk-campaign-steps li:nth-child(1)>b { background:#09aaa4; }
.bk-campaign-steps li:nth-child(2)>b { background:#18b8f2; }
.bk-campaign-steps li:nth-child(3)>b { background:#ff8c1a; }
.bk-campaign-steps li:nth-child(4)>b { background:#082e68; }
.bk-campaign-delivery>div { background:linear-gradient(135deg,#f4fbff,#f3fcfa); }
.bk-campaign-faq details[open] { border-color:#bfe3f4; background:#f7fcff; }
.bk-campaign-faq details[open] summary { color:#087ec0; }

.bk-campaign-product {
  background:
    radial-gradient(circle at 100% 0,rgba(24,184,242,.08),transparent 30%),
    #fff;
}
.bk-campaign-product__panel {
  display:grid;
  grid-template-columns:minmax(240px,.72fr) minmax(0,1.58fr);
  gap:24px;
  padding:14px;
  border:1px solid #dfe8f1;
  border-radius:20px;
  background:linear-gradient(135deg,#f8fcff 0%,#fff 54%,#fffbf5 100%);
}
.bk-campaign-product__visual {
  position:relative;
  min-height:270px;
  overflow:hidden;
  border-radius:15px;
  background:#f2f6f5;
}
.bk-campaign-product__visual img {
  display:block;
  width:100%;
  height:100%;
  min-height:270px;
  object-fit:cover;
}
.bk-campaign-product__visual>span {
  position:absolute;
  right:12px;
  bottom:12px;
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;
  color:#082e68;
  background:rgba(255,255,255,.92);
  box-shadow:0 5px 15px rgba(8,46,104,.12);
  font-size:11px;
  font-weight:850;
}
.bk-campaign-product__visual>span::before {
  content:"✓";
  display:grid;
  place-items:center;
  width:19px;
  height:19px;
  margin-left:6px;
  border-radius:50%;
  color:#fff;
  background:#09aaa4;
}
.bk-campaign-product__body {
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:10px 10px 10px 16px;
}
.bk-campaign-product__eyebrow {
  color:#e97400;
  font-size:11px;
  font-weight:850;
}
.bk-campaign-product__body h3 {
  margin:4px 0 7px;
  color:#082e68;
  font-size:clamp(20px,2vw,27px);
  font-weight:900;
  line-height:1.55;
}
.bk-campaign-product__content {
  display:-webkit-box;
  overflow:hidden;
  margin:0;
  color:#5e6c80;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.bk-campaign-product__content p { margin:0; }
.bk-campaign-product__specs {
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin:16px 0 0;
  overflow:hidden;
  border-color:#dce8f0;
  background:rgba(255,255,255,.72);
}
.bk-campaign-product__specs>div {
  position:relative;
  min-width:0;
  padding:12px;
}
.bk-campaign-product__specs>div::before {
  content:"";
  display:block;
  width:22px;
  height:3px;
  margin:0 auto 7px;
  border-radius:99px;
  background:#18b8f2;
}
.bk-campaign-product__specs>div:nth-child(2n)::before { background:#09aaa4; }
.bk-campaign-product__specs>div:nth-child(3n)::before { background:#ff8c1a; }
.bk-campaign-product__specs dd {
  overflow-wrap:anywhere;
  line-height:1.75;
}
.bk-campaign-product__footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:16px;
}
.bk-campaign-product__link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:43px;
  padding:9px 16px;
  border:1px solid #18b8f2;
  border-radius:11px;
  color:#0876ad !important;
  background:#f2fbff;
  font-size:12px;
  font-weight:850;
  text-decoration:none !important;
  transition:.2s ease;
}
.bk-campaign-product__link:hover {
  color:#fff !important;
  background:#087fb8;
  transform:translateY(-1px);
}
.bk-campaign-product__footer small {
  color:#7c899b;
  font-size:10.5px;
  line-height:1.8;
}
@media (max-width:900px) {
  .bk-campaign-product__panel { grid-template-columns:minmax(210px,.75fr) minmax(0,1.25fr); gap:16px; }
  .bk-campaign-product__specs { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:767px) {
  .bk-campaign-product__panel { grid-template-columns:1fr; padding:9px; }
  .bk-campaign-product__visual,.bk-campaign-product__visual img { min-height:0; aspect-ratio:1/1; }
  .bk-campaign-product__body { padding:8px 6px 6px; }
  .bk-campaign-product__specs { grid-template-columns:1fr; }
  .bk-campaign-product__specs>div+div { border-top:1px solid #e3e9f0; border-right:0; }
  .bk-campaign-product__footer { align-items:stretch; flex-direction:column; gap:9px; }
  .bk-campaign-product__link { width:100%; }
}

/* Small composable outputs for JetEngine Campaign Listings. */
.bk-listing-product,
.bk-listing-stat {
  box-sizing: border-box;
}

.bk-listing-product--image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bk-listing-product__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.bk-listing-product--regular-price {
  color: #7d8796;
  font-size: 14px;
  text-decoration: line-through;
}

.bk-listing-product--group-price {
  color: #0d817d;
  font-size: 30px;
  font-weight: 900;
}

.bk-listing-product--discount {
  display: inline-flex;
  padding: 6px 9px;
  color: #fff;
  background: #ff6b0a;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.bk-listing-progress {
  position: relative;
  width: 100%;
  height: 30px;
  overflow: hidden;
  background: #dff4f2;
  border-radius: 999px;
}

.bk-listing-progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 8px;
  background: #12a8a2;
  border-radius: inherit;
}

.bk-listing-progress > b {
  position: absolute;
  inset: 0 10px 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* My reservations — WooCommerce My Account endpoint. */
.bk-my-reservations,
.bk-my-reservations * { box-sizing:border-box; }
.bk-my-reservations { direction:rtl; color:#0a326d; }
.bk-my-reservations>header { margin-bottom:20px; }
.bk-my-reservations>header span { color:#0aa7a1; font-size:12px; font-weight:850; }
.bk-my-reservations>header h2 { margin:4px 0 0; color:#082e68; font-size:clamp(24px,3vw,34px); font-weight:900; }
.bk-my-reservations__list { display:grid; gap:14px; }
.bk-my-reservation { display:grid; grid-template-columns:128px minmax(0,1fr); overflow:hidden; border:1px solid #dce6f0; border-radius:18px; background:#fff; box-shadow:0 8px 24px rgba(8,46,104,.06); }
.bk-my-reservation__media { min-height:150px; background:#f3f7fa; }
.bk-my-reservation__media img { display:block; width:100%; height:100%; object-fit:cover; }
.bk-my-reservation__body { min-width:0; padding:18px 20px; }
.bk-my-reservation__top { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; }
.bk-my-reservation__top h3 { margin:0; color:#082e68; font-size:17px; font-weight:900; line-height:1.7; }
.bk-my-reservation__top span { flex:none; padding:6px 10px; border-radius:999px; color:#087f7a; background:#e8f8f6; font-size:11px; font-weight:850; }
.bk-my-reservation.is-payment_pending .bk-my-reservation__top span { color:#995400; background:#fff1dc; }
.bk-my-reservation.is-awaiting_deposit .bk-my-reservation__top span,
.bk-my-reservation.is-refund_pending .bk-my-reservation__top span { color:#995400; background:#fff1dc; }
.bk-my-reservation.is-paid .bk-my-reservation__top span { color:#27753b; background:#e9f8ed; }
.bk-my-reservation.is-refunded .bk-my-reservation__top span { color:#27753b; background:#e9f8ed; }
.bk-my-reservation.is-cancelled .bk-my-reservation__top span,
.bk-my-reservation.is-expired .bk-my-reservation__top span,
.bk-my-reservation.is-deposit_failed .bk-my-reservation__top span { color:#667085; background:#f1f3f6; }
.bk-my-reservation dl { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:0; margin:15px 0; padding:12px 0; border-block:1px solid #edf1f5; }
.bk-my-reservation dl>div { min-width:0; padding:0 12px; border-left:1px solid #e7edf3; }
.bk-my-reservation dl>div:last-child { border-left:0; }
.bk-my-reservation dt { color:#7b8798; font-size:10px; font-weight:700; }
.bk-my-reservation dd { margin:4px 0 0; overflow-wrap:anywhere; color:#123b72; font-size:12px; font-weight:850; }
.bk-my-reservation__footer { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.bk-my-reservation__footer small { color:#8a95a5; font-size:10px; }
.bk-my-reservation__footer>div { display:flex; flex-wrap:wrap; gap:8px; }
.bk-my-reservation__footer a { display:inline-flex; align-items:center; justify-content:center; min-height:38px; padding:7px 13px; border-radius:9px; font-size:11px; font-weight:850; text-decoration:none!important; }
.bk-my-reservation__footer .is-secondary { border:1px solid #d7e2ec; color:#0a568e!important; background:#fff; }
.bk-my-reservation__footer .is-primary { border:1px solid #0aa7a1; color:#fff!important; background:#0aa7a1; }
.bk-my-reservations--empty { padding:32px; border:1px solid #dce6f0; border-radius:18px; text-align:center; background:#fff; }
.bk-my-reservations--empty h2 { margin:0 0 8px; }
.bk-my-reservations--empty p { color:#6f7d90; }
.bk-my-reservations--empty a { display:inline-flex; margin-top:8px; padding:9px 16px; border-radius:10px; color:#fff!important; background:#0aa7a1; text-decoration:none!important; }
@media (max-width:767px) {
  .bk-my-reservation { grid-template-columns:82px minmax(0,1fr); }
  .bk-my-reservation__media { min-height:110px; }
  .bk-my-reservation__body { padding:13px; }
  .bk-my-reservation__top { align-items:stretch; flex-direction:column; gap:7px; }
  .bk-my-reservation__top span { align-self:flex-start; }
  .bk-my-reservation dl { grid-template-columns:repeat(2,minmax(0,1fr)); row-gap:12px; }
  .bk-my-reservation dl>div:nth-child(2n) { border-left:0; }
  .bk-my-reservation__footer { align-items:stretch; flex-direction:column; }
  .bk-my-reservation__footer>div,.bk-my-reservation__footer a { width:100%; }
}

/* Bekharim WooCommerce account dashboard. Add bk-account-page to the Elementor parent container. */
.bk-account-page,
.bk-account-page * { box-sizing:border-box; }
.bk-account-page { direction:rtl; --bk-navy:#082e68; --bk-teal:#0aa7a1; --bk-sky:#eaf7fb; --bk-line:#dce6f0; --bk-muted:#6f7d90; }
.bk-account-page .woocommerce { display:grid; grid-template-columns:240px minmax(0,1fr); gap:24px; width:min(1180px,100%); margin-inline:auto; padding:8px 0 56px; color:var(--bk-navy); }
.bk-account-page .woocommerce::before,
.bk-account-page .woocommerce::after { display:none!important; content:none!important; }
.bk-account-page .woocommerce-MyAccount-navigation { align-self:start!important; float:none!important; width:100%!important; height:auto!important; min-height:0!important; margin:0!important; padding:8px!important; border:1px solid var(--bk-line); border-radius:20px; background:linear-gradient(160deg,#fff 0%,#f5fbfc 100%); box-shadow:0 12px 35px rgba(8,46,104,.07); }
.bk-account-page .woocommerce-MyAccount-navigation ul { display:grid; align-content:start!important; grid-auto-rows:max-content!important; gap:5px; width:100%; height:auto!important; min-height:0!important; margin:0!important; padding:0!important; list-style:none!important; }
.bk-account-page .woocommerce-MyAccount-navigation li { position:static!important; margin:0!important; padding:0!important; border:0!important; list-style:none!important; }
.bk-account-page .woocommerce-MyAccount-navigation li::before,
.bk-account-page .woocommerce-MyAccount-navigation li::after { display:none!important; content:none!important; }
.bk-account-page .woocommerce-MyAccount-navigation li::marker { content:""; }
.bk-account-page .woocommerce-MyAccount-navigation a { position:relative; display:flex!important; align-items:center!important; justify-content:center!important; min-height:46px; padding:10px 15px!important; border-radius:12px; direction:rtl!important; color:#44546a!important; background-color:transparent; background-image:none!important; font-size:13px; font-weight:750; text-align:center!important; text-decoration:none!important; transition:.2s ease; }
.bk-account-page .woocommerce-MyAccount-navigation a::before,
.bk-account-page .woocommerce-MyAccount-navigation a::after { display:none!important; content:none!important; }
.bk-account-page .woocommerce-MyAccount-navigation a:hover { color:var(--bk-navy)!important; background-color:#edf7fa; transform:translateY(-1px); }
.bk-account-page .woocommerce-MyAccount-navigation .is-active a { color:#fff!important; background-color:var(--bk-teal); background-image:linear-gradient(135deg,var(--bk-teal),#087fb8)!important; box-shadow:0 8px 18px rgba(10,167,161,.2); }
.bk-account-page .woocommerce-MyAccount-navigation-link--customer-logout { margin-top:8px!important; padding-top:8px!important; border-top:1px solid var(--bk-line)!important; }
.bk-account-page .woocommerce-MyAccount-navigation-link--customer-logout a { color:#b42318!important; }
.bk-account-page .woocommerce-MyAccount-content { float:none!important; width:100%!important; min-width:0; margin:0!important; padding:26px!important; border:1px solid var(--bk-line); border-radius:20px; background:#fff; box-shadow:0 12px 35px rgba(8,46,104,.06); line-height:2; }
.bk-account-page .woocommerce-MyAccount-content>p:first-child { margin-top:0; padding:14px 17px; border:1px solid #d8eceb; border-radius:13px; color:#31516b; background:#f3fbfa; }
.bk-account-page .woocommerce-MyAccount-content a:not(.button):not(.bk-my-reservation__footer a) { color:#087fb8; font-weight:750; text-decoration:none; }
.bk-account-page .woocommerce-MyAccount-content h2,
.bk-account-page .woocommerce-MyAccount-content h3 { color:var(--bk-navy); font-weight:900; }
.bk-account-page .woocommerce-info,
.bk-account-page .woocommerce-message,
.bk-account-page .woocommerce-error { margin:0 0 18px!important; padding:15px 18px!important; border:1px solid #cfe8e6!important; border-top:0!important; border-radius:13px; color:#31516b; background:#f2fbfa; }
.bk-account-page .woocommerce-info::before,
.bk-account-page .woocommerce-message::before,
.bk-account-page .woocommerce-error::before { display:none!important; content:none!important; }
.bk-account-page .woocommerce-error { border-color:#f2d1cc!important; color:#9f2d24; background:#fff6f5; }
.bk-account-page .woocommerce table.shop_table { overflow:hidden; margin:0 0 18px!important; border:1px solid var(--bk-line)!important; border-radius:14px; border-collapse:separate!important; border-spacing:0; font-size:12px; }
.bk-account-page .woocommerce table.shop_table th { padding:13px!important; color:var(--bk-navy); background:#f2f7fa; font-weight:850; }
.bk-account-page .woocommerce table.shop_table td { padding:13px!important; border-color:#e8eef3!important; }
.bk-account-page .woocommerce .button,
.bk-account-page .woocommerce button.button,
.bk-account-page .woocommerce input.button { min-height:40px; padding:9px 16px!important; border:0!important; border-radius:10px!important; color:#fff!important; background:var(--bk-teal)!important; font-size:12px!important; font-weight:850!important; line-height:1.5!important; transition:.2s ease; }
.bk-account-page .woocommerce .button:hover,
.bk-account-page .woocommerce button.button:hover { background:#087f7a!important; transform:translateY(-1px); }
.bk-account-page .woocommerce form .form-row { margin:0 0 15px!important; padding:0!important; }
.bk-account-page .woocommerce form .form-row label { margin-bottom:5px; color:#294d76; font-size:12px; font-weight:800; }
.bk-account-page .woocommerce input.input-text,
.bk-account-page .woocommerce textarea,
.bk-account-page .woocommerce select { width:100%; min-height:45px; padding:9px 12px!important; border:1px solid #d5e0e9!important; border-radius:10px!important; color:#233b5b; background:#fff!important; box-shadow:none!important; outline:0; }
.bk-account-page .woocommerce input.input-text:focus,
.bk-account-page .woocommerce textarea:focus,
.bk-account-page .woocommerce select:focus { border-color:var(--bk-teal)!important; box-shadow:0 0 0 3px rgba(10,167,161,.11)!important; }
.bk-account-page .woocommerce-Addresses { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; }
.bk-account-page .woocommerce-Addresses::before,
.bk-account-page .woocommerce-Addresses::after { display:none; content:none; }
.bk-account-page .woocommerce-Address { float:none!important; width:100%!important; margin:0!important; padding:18px; border:1px solid var(--bk-line); border-radius:14px; background:#fbfdfe; }
.bk-account-page .select2-container .select2-selection--single { height:45px; border:1px solid #d5e0e9; border-radius:10px; }
.bk-account-page .select2-container--default .select2-selection--single .select2-selection__rendered { line-height:43px; }
.bk-account-page .select2-container--default .select2-selection--single .select2-selection__arrow { top:9px; }
@media (max-width:900px) {
  .bk-account-page .woocommerce { grid-template-columns:200px minmax(0,1fr); gap:16px; }
  .bk-account-page .woocommerce-MyAccount-content { padding:20px!important; }
}
@media (max-width:767px) {
  .bk-account-page .woocommerce { display:block; padding-bottom:35px; }
  .bk-account-page .woocommerce-MyAccount-navigation { margin-bottom:14px!important; padding:8px!important; overflow-x:auto; overflow-y:hidden; border-radius:15px; scrollbar-width:none; }
  .bk-account-page .woocommerce-MyAccount-navigation::-webkit-scrollbar { display:none; }
  .bk-account-page .woocommerce-MyAccount-navigation ul { display:flex; width:max-content; max-width:none; gap:6px; }
  .bk-account-page .woocommerce-MyAccount-navigation li { flex:none; width:auto; }
  .bk-account-page .woocommerce-MyAccount-navigation a { width:auto; min-height:42px; padding:9px 13px!important; white-space:nowrap; }
  .bk-account-page .woocommerce-MyAccount-navigation-link--customer-logout { margin-top:0!important; padding-top:0!important; border-top:0!important; }
  .bk-account-page .woocommerce-MyAccount-content { padding:16px!important; border-radius:15px; }
  .bk-account-page .woocommerce-Addresses { grid-template-columns:1fr; }
  .bk-account-page .woocommerce table.shop_table_responsive thead { display:none; }
  .bk-account-page .woocommerce table.shop_table_responsive tr { display:block; padding:8px 0; border-bottom:1px solid var(--bk-line); }
  .bk-account-page .woocommerce table.shop_table_responsive td { display:flex!important; align-items:center; justify-content:space-between; gap:15px; width:100%; text-align:left!important; }
  .bk-account-page .woocommerce table.shop_table_responsive td::before { color:var(--bk-navy); font-weight:800; }
}

/* Branded WooCommerce order-pay view for Bekharim deposit orders only. */
body.bk-deposit-payment-page {
  --bk-pay-navy:#082e68;
  --bk-pay-teal:#00b894;
  --bk-pay-teal-dark:#008e74;
  --bk-pay-sky:#18b8f2;
  --bk-pay-orange:#ff8c1a;
  --bk-pay-text:#1d2433;
  --bk-pay-muted:#6b7280;
  --bk-pay-line:#e1e8ef;
  --bk-pay-surface:#fff;
  font-family:"Vazirmatn",Tahoma,sans-serif!important;
  background:#f6f9fb;
}
body.bk-deposit-payment-page .site-main,
body.bk-deposit-payment-page .entry-content,
body.bk-deposit-payment-page .woocommerce,
body.bk-deposit-payment-page .woocommerce table,
body.bk-deposit-payment-page .woocommerce th,
body.bk-deposit-payment-page .woocommerce td,
body.bk-deposit-payment-page .woocommerce button,
body.bk-deposit-payment-page .woocommerce input,
body.bk-deposit-payment-page .woocommerce select,
body.bk-deposit-payment-page .woocommerce textarea {
  font-family:"Vazirmatn",Tahoma,sans-serif!important;
}
body.bk-deposit-payment-page .site-main,
body.bk-deposit-payment-page .entry-content,
body.bk-deposit-payment-page .woocommerce {
  box-sizing:border-box;
}
body.bk-deposit-payment-page .entry-content>.woocommerce,
body.bk-deposit-payment-page main .woocommerce {
  width:min(1040px,calc(100% - 32px));
  margin:34px auto 72px;
  direction:rtl;
  color:var(--bk-pay-text);
}
body.bk-deposit-payment-page h1,
body.bk-deposit-payment-page .entry-title {
  width:min(1040px,calc(100% - 32px));
  margin:42px auto 24px;
  color:var(--bk-pay-navy);
  font-size:clamp(28px,4vw,43px);
  font-family:"Vazirmatn",Tahoma,sans-serif!important;
  font-weight:900;
  line-height:1.5;
  text-align:right;
  letter-spacing:-1px;
}
body.bk-deposit-payment-page h1::before,
body.bk-deposit-payment-page .entry-title::before {
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  margin-left:10px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--bk-pay-teal),var(--bk-pay-sky));
  box-shadow:0 0 0 6px rgba(0,184,148,.1);
  vertical-align:middle;
}
body.bk-deposit-payment-page .woocommerce table.shop_table {
  width:100%;
  margin:0 0 22px!important;
  overflow:hidden;
  border:1px solid var(--bk-pay-line)!important;
  border-radius:20px!important;
  border-collapse:separate!important;
  border-spacing:0!important;
  background:var(--bk-pay-surface);
  box-shadow:0 16px 45px rgba(8,46,104,.08);
}
body.bk-deposit-payment-page .woocommerce table.shop_table th,
body.bk-deposit-payment-page .woocommerce table.shop_table td {
  border-color:var(--bk-pay-line)!important;
  text-align:right!important;
}
body.bk-deposit-payment-page .woocommerce table.shop_table thead th {
  padding:15px 22px!important;
  color:#4c6078;
  background:#f1f8f8;
  font-size:13px;
  font-weight:700;
}
body.bk-deposit-payment-page .woocommerce table.shop_table thead th.product-name { width:68%; }
body.bk-deposit-payment-page .woocommerce table.shop_table thead th.product-quantity { width:12%; text-align:center!important; }
body.bk-deposit-payment-page .woocommerce table.shop_table thead th.product-total { width:20%; }
body.bk-deposit-payment-page .woocommerce table.shop_table tbody td {
  padding:24px 22px!important;
  vertical-align:middle!important;
  background:#fff;
}
body.bk-deposit-payment-page .woocommerce table.shop_table tbody td.product-name {
  position:relative;
  border-right:4px solid var(--bk-pay-teal)!important;
}
body.bk-deposit-payment-page .woocommerce table.shop_table td.product-quantity {
  text-align:center!important;
}
.bk-deposit-item__eyebrow {
  display:block;
  margin-bottom:5px;
  color:var(--bk-pay-teal-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:.2px;
}
.bk-deposit-item__title {
  display:block;
  color:var(--bk-pay-navy);
  font-size:18px;
  font-weight:850;
  line-height:1.65;
}
.bk-deposit-item__quantity {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-width:72px;
  padding:8px 11px;
  border:1px solid #cce9e5;
  border-radius:999px;
  color:var(--bk-pay-teal-dark);
  background:#effaf8;
  white-space:nowrap;
}
.bk-deposit-item__quantity b { font-size:14px; font-weight:850; }
.bk-deposit-item__quantity small { font-size:11px; font-weight:700; }
body.bk-deposit-payment-page .woocommerce table.shop_table .product-total {
  color:var(--bk-pay-navy);
  font-size:16px;
  font-weight:850;
  white-space:nowrap;
}
body.bk-deposit-payment-page .woocommerce .wc-item-meta {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px 10px;
  margin:15px 0 0!important;
  padding:0!important;
  color:var(--bk-pay-muted);
  font-size:12px;
  list-style:none!important;
}
body.bk-deposit-payment-page .woocommerce .wc-item-meta li {
  display:flex;
  align-items:center;
  gap:5px;
  min-width:0;
  margin:0!important;
  padding:8px 10px!important;
  border:1px solid #e7edf2;
  border-radius:9px;
  background:#f9fbfc;
}
body.bk-deposit-payment-page .woocommerce .wc-item-meta li::before,
body.bk-deposit-payment-page .woocommerce .wc-item-meta li::after { display:none!important; content:none!important; }
body.bk-deposit-payment-page .woocommerce .wc-item-meta strong {
  flex:none;
  color:#52667d;
  font-weight:700;
}
body.bk-deposit-payment-page .woocommerce .wc-item-meta p {
  min-width:0;
  margin:0!important;
  overflow-wrap:anywhere;
  color:var(--bk-pay-navy);
  font-weight:700;
}
body.bk-deposit-payment-page .woocommerce table.shop_table tfoot th,
body.bk-deposit-payment-page .woocommerce table.shop_table tfoot td {
  padding:15px 22px!important;
  background:#fbfcfd;
  font-size:13px;
  font-weight:700;
}
body.bk-deposit-payment-page .woocommerce table.shop_table tfoot tr:last-child th,
body.bk-deposit-payment-page .woocommerce table.shop_table tfoot tr:last-child td {
  color:var(--bk-pay-navy);
  background:#eef9f7;
  font-size:16px;
  font-weight:850;
}
body.bk-deposit-payment-page .woocommerce #payment {
  overflow:hidden;
  margin-top:20px;
  border:1px solid var(--bk-pay-line);
  border-radius:20px;
  background:#fff!important;
  box-shadow:0 16px 45px rgba(8,46,104,.07);
}
body.bk-deposit-payment-page .woocommerce #payment .woocommerce-info,
body.bk-deposit-payment-page .woocommerce #payment .woocommerce-error,
body.bk-deposit-payment-page .woocommerce #payment .woocommerce-message {
  position:relative;
  margin:18px!important;
  padding:16px 52px 16px 18px!important;
  border:1px solid #cfe6ef!important;
  border-radius:12px!important;
  color:#36546d;
  background:#f2faff!important;
  font-size:12px;
  line-height:2;
}
body.bk-deposit-payment-page .woocommerce #payment .woocommerce-info::before {
  top:18px!important;
  right:18px!important;
  left:auto!important;
  color:var(--bk-pay-sky)!important;
}
body.bk-deposit-payment-page .woocommerce #payment .form-row {
  margin:0!important;
  padding:20px!important;
  border-top:1px solid var(--bk-pay-line);
  background:#fff;
}
body.bk-deposit-payment-page .woocommerce #payment .woocommerce-privacy-policy-text {
  margin-bottom:16px;
  color:var(--bk-pay-muted);
  font-size:11.5px;
  line-height:2;
}
body.bk-deposit-payment-page .woocommerce #payment .woocommerce-privacy-policy-text a {
  color:#087fb8;
  font-weight:850;
  text-decoration:none;
}
body.bk-deposit-payment-page .woocommerce #payment #place_order,
body.bk-deposit-payment-page .woocommerce #payment button.button,
body.bk-deposit-payment-page .woocommerce #payment input.button {
  float:none!important;
  min-width:230px;
  min-height:50px;
  padding:12px 22px!important;
  border:0!important;
  border-radius:12px!important;
  color:#fff!important;
  background:linear-gradient(135deg,var(--bk-pay-teal),#08a9a3)!important;
  box-shadow:0 10px 24px rgba(0,184,148,.24)!important;
  font-size:13px!important;
  font-weight:850!important;
  line-height:1.5!important;
  transition:.2s ease;
}
body.bk-deposit-payment-page .woocommerce #payment #place_order:hover,
body.bk-deposit-payment-page .woocommerce #payment button.button:hover {
  background:linear-gradient(135deg,var(--bk-pay-teal-dark),#087fb8)!important;
  box-shadow:0 12px 28px rgba(8,127,122,.28)!important;
  transform:translateY(-1px);
}
@media (max-width:767px) {
  body.bk-deposit-payment-page .entry-content>.woocommerce,
  body.bk-deposit-payment-page main .woocommerce,
  body.bk-deposit-payment-page h1,
  body.bk-deposit-payment-page .entry-title { width:min(100% - 22px,1040px); }
  body.bk-deposit-payment-page h1,
  body.bk-deposit-payment-page .entry-title { margin-top:25px; font-size:27px; }
  body.bk-deposit-payment-page .woocommerce table.shop_table { border-radius:15px!important; }
  body.bk-deposit-payment-page .woocommerce table.shop_table thead { display:none!important; }
  body.bk-deposit-payment-page .woocommerce table.shop_table tbody tr {
    display:grid!important;
    grid-template-columns:1fr 1fr;
    padding:0!important;
  }
  body.bk-deposit-payment-page .woocommerce table.shop_table tbody td {
    display:block!important;
    width:auto!important;
    padding:15px!important;
    border:0!important;
    text-align:right!important;
  }
  body.bk-deposit-payment-page .woocommerce table.shop_table tbody td.product-name {
    grid-column:1/-1;
    padding:19px 16px!important;
    border-right:0!important;
    border-bottom:1px solid var(--bk-pay-line)!important;
    box-shadow:inset -4px 0 0 var(--bk-pay-teal);
  }
  body.bk-deposit-payment-page .woocommerce table.shop_table tbody td.product-quantity {
    display:flex!important;
    align-items:center;
    justify-content:flex-start;
    border-left:1px solid var(--bk-pay-line)!important;
  }
  body.bk-deposit-payment-page .woocommerce table.shop_table tbody td.product-total {
    display:flex!important;
    align-items:center;
    justify-content:flex-end;
    text-align:left!important;
  }
  body.bk-deposit-payment-page .woocommerce table.shop_table tbody td::before { display:none!important; }
  body.bk-deposit-payment-page .woocommerce .wc-item-meta { grid-template-columns:1fr; }
  body.bk-deposit-payment-page .woocommerce table.shop_table tfoot tr {
    display:flex!important;
    align-items:center;
    justify-content:space-between;
  }
  body.bk-deposit-payment-page .woocommerce table.shop_table tfoot th,
  body.bk-deposit-payment-page .woocommerce table.shop_table tfoot td {
    display:block!important;
    width:auto!important;
    border:0!important;
    text-align:right!important;
  }
  body.bk-deposit-payment-page .woocommerce #payment { border-radius:15px; }
  body.bk-deposit-payment-page .woocommerce #payment .woocommerce-info { margin:12px!important; }
  body.bk-deposit-payment-page .woocommerce #payment .form-row { padding:15px!important; }
  body.bk-deposit-payment-page .woocommerce #payment #place_order,
  body.bk-deposit-payment-page .woocommerce #payment button.button,
  body.bk-deposit-payment-page .woocommerce #payment input.button { width:100%; min-width:0; }
}
