/* دمج قسم المميزات مع العنصر الموجود فوقه */
.info01 {
    position: relative !important;
    z-index: 30 !important;

    width: calc(100% - 48px) !important;
    max-width: 1440px !important;
    height: auto !important;

    margin-top: -75px !important;
    margin-right: auto !important;
    margin-left: auto !important;

    background: #ffffff;
    border: 1px solid #e1e6e9;
    border-radius: 18px;
    box-shadow:
        0 5px 12px rgba(7, 37, 56, 0.08),
        0 18px 35px rgba(7, 37, 56, 0.07);

    box-sizing: border-box;
}

/* التابلت */
@media (max-width: 1024px) {
    .info01 {
        width: calc(100% - 32px) !important;
        margin-top: -40px !important;
        border-radius: 16px;
    }
}

/* الهاتف */
@media (max-width: 767px) {
    .info01 {
        width: calc(100% - 24px) !important;
        margin-top: -65px !important;
        border-radius: 14px;
        box-shadow:
            0 4px 10px rgba(7, 37, 56, 0.08),
            0 12px 25px rgba(7, 37, 56, 0.07);
    }
}

<!-- قسم آراء العملاء - بداية -->
  #mj-customer-reviews {
    --mj-navy: #08253a;
    --mj-navy-2: #123a55;
    --mj-teal: #28b7c9;
    --mj-teal-soft: #e8f8fa;
    --mj-cream: #fcfbf8;
    --mj-card: #ffffff;
    --mj-text-soft: #6f7a83;
    --mj-line: #dce2e6;
    --mj-shadow: 0 2px 5px rgba(8, 37, 58, 0.09),
                 0 14px 32px rgba(8, 37, 58, 0.05);

    direction: rtl;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background:
      radial-gradient(circle at 50% 0%, rgba(40, 183, 201, 0.05), transparent 35%),
      linear-gradient(180deg, #ffffff 0%, var(--mj-cream) 100%);
    border-top: 1px solid rgba(8, 37, 58, 0.06);
    border-bottom: 1px solid rgba(8, 37, 58, 0.06);
    font-family: inherit;
    box-sizing: border-box;
  }

  #mj-customer-reviews *,
  #mj-customer-reviews *::before,
  #mj-customer-reviews *::after {
    box-sizing: border-box;
  }

  #mj-customer-reviews .mj-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
  }

  #mj-customer-reviews .mj-heading {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
  }

  #mj-customer-reviews .mj-eyebrow {
    margin: 0 0 10px;
    color: var(--mj-teal);
    font-size: 14px;
    font-weight: 800;
  }

  #mj-customer-reviews .mj-title {
    margin: 0;
    color: var(--mj-navy);
    font-size: clamp(29px, 3vw, 45px);
    font-weight: 900;
    line-height: 1.35;
  }

  #mj-customer-reviews .mj-number {
    display: inline-block;
    font-weight: 950;
    letter-spacing: -1px;
  }

  #mj-customer-reviews .mj-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 14px;
    margin-top: 18px;
  }

  #mj-customer-reviews .mj-stars {
    direction: ltr;
    color: var(--mj-teal);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-score {
    color: var(--mj-navy);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-count {
    color: var(--mj-text-soft);
    font-size: 12px;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  #mj-customer-reviews .mj-review-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 275px;
    flex-direction: column;
    padding: 31px;
    overflow: hidden;
    background: var(--mj-card);
    border: 1px solid var(--mj-line);
    border-radius: 18px;
    box-shadow: var(--mj-shadow);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  #mj-customer-reviews .mj-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(40, 183, 201, 0.4);
    box-shadow: 0 18px 40px rgba(8, 37, 58, 0.13);
  }

  #mj-customer-reviews .mj-quote-mark {
    position: absolute;
    top: 27px;
    inset-inline-end: 30px;
    color: rgba(40, 183, 201, 0.15);
    font-family: Georgia, serif;
    font-size: 76px;
    font-weight: 900;
    line-height: 0.7;
    pointer-events: none;
  }

  #mj-customer-reviews .mj-card-stars {
    direction: ltr;
    align-self: flex-start;
    margin-bottom: 22px;
    color: var(--mj-teal);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-review-text {
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0 0 24px;
    color: var(--mj-navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }

  #mj-customer-reviews .mj-review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--mj-line);
  }

  #mj-customer-reviews .mj-avatar {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(145deg, var(--mj-navy), var(--mj-navy-2));
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
  }

  #mj-customer-reviews .mj-customer {
    min-width: 0;
  }

  #mj-customer-reviews .mj-customer-name {
    margin-bottom: 4px;
    overflow: hidden;
    color: var(--mj-navy);
    font-size: 14px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-customer-info {
    overflow: hidden;
    color: var(--mj-text-soft);
    font-size: 11px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
    padding: 6px 9px;
    flex: 0 0 auto;
    color: var(--mj-teal);
    background: var(--mj-teal-soft);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
  }

  #mj-customer-reviews .mj-verified svg {
    width: 11px;
    height: 11px;
  }

  #mj-customer-reviews .mj-slider-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 24px;
  }

  #mj-customer-reviews .mj-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: #cdd7dc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
  }

  #mj-customer-reviews .mj-dot.is-active {
    width: 24px;
    background: var(--mj-teal);
    border-radius: 20px;
  }

  @media (max-width: 1024px) {
    #mj-customer-reviews .mj-reviews-track {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #mj-customer-reviews .mj-review-card:last-child {
      grid-column: 1 / -1;
      width: calc(50% - 13px);
      margin: 0 auto;
    }
  }

  @media (max-width: 767px) {
    #mj-customer-reviews {
      padding: 58px 16px;
    }

    #mj-customer-reviews .mj-heading {
      margin-bottom: 35px;
    }

    #mj-customer-reviews .mj-title {
      font-size: 28px;
      line-height: 1.45;
    }

    #mj-customer-reviews .mj-summary {
      gap: 8px 10px;
    }

    #mj-customer-reviews .mj-reviews-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: min(88%, 355px);
      grid-template-columns: none;
      gap: 14px;
      margin-inline: -16px;
      padding: 5px 16px 15px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    #mj-customer-reviews .mj-reviews-track::-webkit-scrollbar {
      display: none;
    }

    #mj-customer-reviews .mj-review-card,
    #mj-customer-reviews .mj-review-card:last-child {
      grid-column: auto;
      width: auto;
      min-height: 295px;
      padding: 25px 22px;
      scroll-snap-align: center;
    }

    #mj-customer-reviews .mj-review-text {
      font-size: 14px;
      line-height: 1.95;
    }

    #mj-customer-reviews .mj-review-footer {
      gap: 9px;
    }

    #mj-customer-reviews .mj-avatar {
      width: 43px;
      height: 43px;
      flex-basis: 43px;
    }

    #mj-customer-reviews .mj-customer-info {
      max-width: 145px;
    }

    #mj-customer-reviews .mj-slider-dots {
      display: flex;
    }
  }

  @media (max-width: 390px) {
    #mj-customer-reviews .mj-verified {
      padding: 6px;
    }

    #mj-customer-reviews .mj-verified span {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #mj-customer-reviews *,
    #mj-customer-reviews *::before,
    #mj-customer-reviews *::after {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }

/* ==================================================
   تصميم أقسام المنتجات المخصصة — Jeans Coal
================================================== */

.s-block--custom-products.jc-products-pro {
    --jc-navy: #0b2239;
    --jc-teal: #20b9c5;
    --jc-soft-bg: #fbfaf7;
    --jc-muted: #747d85;
    --jc-line: #e7e7e4;

    position: relative !important;
    isolation: isolate;

    width: min(1380px, calc(100% - 34px)) !important;
    max-width: 1380px !important;

    margin: 0 auto !important;
    padding: 42px 0 55px !important;

    background: transparent;
    overflow: visible !important;
    font-family: inherit;
}

/* خلفية القسم بعرض الشاشة */
.s-block--custom-products.jc-products-pro::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 100vw;
    transform: translateX(-50%);

    background: var(--jc-soft-bg);
}

/* =========================
   عنوان القسم
========================= */

.jc-products-pro .home-block-title {
    width: 100%;
    margin: 0 0 28px !important;
    padding-left: 115px;

    text-align: right !important;
}

.jc-products-pro .jc-section-kicker {
    display: block;
    margin-bottom: 7px;

    color: var(--jc-teal);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.jc-products-pro .home-block-title h2 {
    margin: 0 !important;

    color: var(--jc-navy) !important;
    font-size: clamp(25px, 2.3vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
}

.jc-products-pro .home-block-title p {
    margin: 4px 0 0 !important;

    color: var(--jc-muted) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* إخفاء الخط الموجود تحت العنوان القديم */
.jc-products-pro .home-block-title > .border-primary {
    display: none !important;
}

/* =========================
   رابط عرض الكل
========================= */

.jc-products-pro .jc-view-all-wrap {
    position: absolute !important;
    z-index: 5;
    top: 80px;
    left: 0;

    display: block !important;
    margin: 0 !important;
}

.jc-products-pro .jc-view-all-wrap a {
    display: inline-flex !important;
    align-items: center;
    padding: 0 0 6px !important;

    color: var(--jc-navy) !important;
    border-bottom: 2px solid var(--jc-teal);

    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.jc-products-pro .jc-view-all-wrap a:hover {
    color: var(--jc-teal) !important;
}

.jc-products-pro .jc-view-all-wrap i,
.jc-products-pro .jc-view-all-wrap .absolute {
    display: none !important;
}

/* =========================
   شبكة المنتجات
========================= */

.jc-products-pro salla-products-list {
    display: block !important;
    width: 100% !important;
}

.jc-products-pro .s-products-list-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 26px 24px !important;

    width: 100% !important;
    overflow: visible !important;
}

/* =========================
   البطاقة
========================= */

.jc-products-pro custom-salla-product-card.product-card {
    position: relative !important;
    display: block !important;

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

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

/* صورة المنتج */
.jc-products-pro .product-card__image {
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5;

    background: #e8e8e6 !important;
    border-radius: 7px !important;
    overflow: hidden !important;
}

.jc-products-pro .product-card__image > a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.jc-products-pro .product-card__image img.main-image {
    display: block !important;

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

    object-fit: cover !important;
    object-position: center top !important;

    transition: transform 0.4s ease !important;
}

.jc-products-pro .product-card:hover .product-card__image img {
    transform: scale(1.025);
}

/* إخفاء أزرار السلة والقلب والمعاينة */
.jc-products-pro .product-card__actions,
.jc-products-pro .product-card__buttons,
.jc-products-pro .product-card__addToCart {
    display: none !important;
}

/* =========================
   محتوى البطاقة
========================= */

.jc-products-pro .product-card__content,
.jc-products-pro .product-card__content-wrapper {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

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

    background: transparent !important;
    text-align: right !important;
}

.jc-products-pro .product-card__content {
    padding-top: 13px !important;
}

.jc-products-pro .product-card__title {
    width: 100% !important;
    margin: 0 0 5px !important;

    text-align: right !important;
}

.jc-products-pro .product-card__title a {
    display: -webkit-box;
    overflow: hidden;

    color: var(--jc-navy) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;

    text-decoration: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/* إخفاء الوصف والخيارات للحصول على الشكل النظيف */
.jc-products-pro .product-card__subtitle,
.jc-products-pro .product-options:empty {
    display: none !important;
}

/* =========================
   السعر
========================= */

.jc-products-pro .product-card__price {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100% !important;
    margin: 0 !important;
    gap: 7px !important;

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

.jc-products-pro .price_is_on_sale,
.jc-products-pro .starting-or-normal-price {
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
}

.jc-products-pro .product-card__price .total-price {
    margin: 0 !important;

    color: var(--jc-navy) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
}

.jc-products-pro .product-card__price .before-price {
    color: #7d858b !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-decoration-thickness: 1px;
}

/* =========================
   نسبة الخصم
========================= */

.jc-products-pro .jc-discount-badge,
.jc-products-pro .jc-new-badge {
    position: absolute;
    z-index: 8;
    top: 12px;

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

    min-width: 41px;
    height: 27px;
    padding: 0 8px;

    color: #ffffff;
    border-radius: 4px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.jc-products-pro .jc-discount-badge {
    right: 12px;
    background: #ef3340;
}

.jc-products-pro .jc-new-badge {
    left: 12px;
    background: var(--jc-teal);
}

/* =========================
   شريط تابي
========================= */

.jc-products-pro .jc-installment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    width: 100%;
    min-height: 30px;
    margin-top: 9px;
    padding: 5px 7px;

    color: #596068;
    background: #f3f2ef;
    border-radius: 6px;

    direction: rtl;
    font-size: 10px;
    line-height: 1.4;
}

.jc-products-pro .jc-installment strong {
    color: #101f2d;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    direction: ltr;
}

/* =========================
   التابلت
========================= */

@media (max-width: 1050px) {
    .jc-products-pro .s-products-list-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 24px 18px !important;
    }
}

/* =========================
   الهاتف
========================= */

@media (max-width: 767px) {
    .s-block--custom-products.jc-products-pro {
        width: calc(100% - 24px) !important;
        padding: 31px 0 40px !important;
    }

    .jc-products-pro .home-block-title {
        margin-bottom: 19px !important;
        padding-left: 72px;
    }

    .jc-products-pro .jc-section-kicker {
        margin-bottom: 4px;
        font-size: 11px;
    }

    .jc-products-pro .home-block-title h2 {
        font-size: 21px !important;
    }

    .jc-products-pro .home-block-title p {
        max-width: 260px;
        font-size: 11px !important;
        line-height: 1.6 !important;
    }

    .jc-products-pro .jc-view-all-wrap {
        top: 58px;
    }

    .jc-products-pro .jc-view-all-wrap a {
        padding-bottom: 4px !important;
        font-size: 11px !important;
    }

    .jc-products-pro .s-products-list-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 23px 10px !important;
    }

    .jc-products-pro .product-card__image {
        aspect-ratio: 4 / 5;
        border-radius: 6px !important;
    }

    .jc-products-pro .product-card__content {
        padding-top: 9px !important;
    }

    .jc-products-pro .product-card__title a {
        font-size: 12px !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: 2;
    }

    .jc-products-pro .product-card__price .total-price {
        font-size: 14px !important;
    }

    .jc-products-pro .product-card__price .before-price {
        font-size: 10px !important;
    }

    .jc-products-pro .jc-installment {
        gap: 4px;
        min-height: 27px;
        margin-top: 7px;
        padding: 4px;

        font-size: 8px;
    }

    .jc-products-pro .jc-installment strong {
        font-size: 9px;
    }

    .jc-products-pro .jc-discount-badge,
    .jc-products-pro .jc-new-badge {
        top: 8px;
        min-width: 34px;
        height: 23px;
        padding: 0 6px;
        font-size: 9px;
    }

    .jc-products-pro .jc-discount-badge {
        right: 8px;
    }

    .jc-products-pro .jc-new-badge {
        left: 8px;
    }
}

@media (max-width: 370px) {
    .jc-products-pro .jc-installment span {
        font-size: 7px;
    }
}

.s-block-trust-faq-item.qc-closed
.s-block-trust-faq-answer {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
}

.s-block-trust-faq-item.qc-closed
.s-block-trust-faq-question {
    padding-bottom: 17px !important;
}

.s-block-trust-faq-item.qc-closed
.s-block-trust-faq-question::before {
    content: "+" !important;
}




#fot-contact-widget,
#fot-contact-widget * {
    box-sizing: border-box;
}

#fot-contact-widget {
    position: relative;
    display: block;
    width: 100%;
    margin: 35px 0;
    padding: 78px 20px 68px;
    overflow: hidden;
    direction: rtl;
    font-family: inherit;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(67, 197, 215, 0.18) 0%,
            transparent 44%
        ),
        linear-gradient(
            135deg,
            #071e2c 0%,
            #0b2e40 52%,
            #082330 100%
        );

    border-radius: 16px;
    isolation: isolate;
}

#fot-contact-widget::before,
#fot-contact-widget::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

#fot-contact-widget::before {
    top: -130px;
    right: -110px;
    width: 300px;
    height: 300px;
    background: rgba(54, 197, 216, 0.06);
}

#fot-contact-widget::after {
    bottom: -170px;
    left: -100px;
    width: 340px;
    height: 340px;
    background: rgba(36, 208, 106, 0.04);
}

#fot-contact-widget .fot-contact-container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

#fot-contact-widget .fot-contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 30px;
    margin: 0 0 22px;
    padding: 7px 15px;

    color: #64d7e5;
    background: rgba(61, 195, 213, 0.08);
    border: 1px solid rgba(83, 206, 222, 0.48);
    border-radius: 100px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

#fot-contact-widget .fot-badge-dot {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    background: #43cadb;
    border-radius: 50%;
    box-shadow: 0 0 9px rgba(67, 202, 219, 0.85);
}

#fot-contact-widget .fot-contact-title {
    max-width: 790px;
    margin: 0 auto 13px;

    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
}

#fot-contact-widget .fot-contact-description {
    max-width: 680px;
    margin: 0 auto;

    color: #c7d5dc;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-align: center;
}

#fot-contact-widget .fot-contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    margin-top: 29px;
}

#fot-contact-widget .fot-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 190px;
    min-height: 49px;
    padding: 11px 18px;

    border: 0;
    border-radius: 7px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;

    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

#fot-contact-widget .fot-contact-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
}

#fot-contact-widget .fot-contact-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
}

#fot-contact-widget .fot-whatsapp-button {
    color: #ffffff;
    background: #21cf68;
    box-shadow: 0 9px 24px rgba(33, 207, 104, 0.2);
}

#fot-contact-widget .fot-call-button {
    color: #062330;
    background: #43c5d7;
    box-shadow: 0 9px 24px rgba(67, 197, 215, 0.2);
}

#fot-contact-widget .fot-contact-button svg {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

#fot-contact-widget .fot-whatsapp-button svg {
    fill: currentColor;
}

#fot-contact-widget .fot-contact-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;

    margin-top: 24px;

    color: #d2dfe5;
    font-size: 11px;
    font-weight: 500;
}

#fot-contact-widget .fot-contact-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

#fot-contact-widget .fot-contact-trust span::before {
    content: "✓";
    color: #4acbdc;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 768px) {
    #fot-contact-widget {
        margin: 25px 0;
        padding: 58px 16px 52px;
        border-radius: 12px;
    }

    #fot-contact-widget .fot-contact-title {
        max-width: 600px;
        font-size: 26px;
    }

    #fot-contact-widget .fot-contact-description {
        max-width: 520px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    #fot-contact-widget {
        padding: 50px 14px 44px;
    }

    #fot-contact-widget .fot-contact-badge {
        margin-bottom: 18px;
        font-size: 10px;
    }

    #fot-contact-widget .fot-contact-title {
        max-width: 360px;
        font-size: 23px;
        line-height: 1.55;
    }

    #fot-contact-widget .fot-contact-description {
        max-width: 350px;
        font-size: 13.5px;
        line-height: 1.9;
    }

    #fot-contact-widget .fot-contact-actions {
        max-width: 370px;
        margin: 24px auto 0;
        gap: 9px;
    }

    #fot-contact-widget .fot-contact-button {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: 47px;
        padding: 10px 8px;
        font-size: 12px;
    }

    #fot-contact-widget .fot-contact-button svg {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    #fot-contact-widget .fot-contact-trust {
        max-width: 360px;
        margin: 20px auto 0;
        gap: 10px 14px;
        font-size: 9.5px;
    }
}

@media (max-width: 390px) {
    #fot-contact-widget .fot-contact-actions {
        flex-direction: column;
        max-width: 310px;
    }

    #fot-contact-widget .fot-contact-button {
        flex: none;
        width: 100%;
    }
}