/* =============================================
   MOBILE HEADER & SIDE NAV — Figma 14:2392
   ============================================= */

@media (max-width: 991px) {
  :root {
    --header-height: 55px;
    --mobile-drawer-width: min(320px, 85vw);
    --mobile-drawer-ease: cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ---------- Prevent horizontal scroll ---------- */
  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
    width: 100%;
  }

  main,
  .site-footer {
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
  }

  section {
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  img,
  video,
  picture,
  svg {
    max-width: 100%;
  }

  .partners-title,
  .product-slider-header .partners-title,
  .imported-title {
    white-space: normal;
    font-size: 22px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* ---------- Mobile Header Bar ---------- */
  .site-header {
    border-bottom: 1px solid #edeef0;
    box-shadow: none;
  }

  .site-header.header-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-inner {
    padding: 14px 0;
    gap: 12px;
  }

  .header-left {
    gap: 0;
    flex: 1;
    min-width: 0;
  }

  .header-logo img {
    height: 25px;
  }

  /* Header actions: welcome/signin only in bar */
  .header-actions {
    gap: 8px;
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0;
  }

  .header-actions .lang-btn,
  .header-actions .header-icons {
    display: none;
  }

  body.logged-in .header-actions {
    display: none;
  }

  .header-actions>.btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    font-size: 11px;
    line-height: 14px;
    border-radius: 10px;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hamburger toggle — Figma: 30.59px button, 22.94px icon */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 31px;
    height: 31px;
    padding: 4px;
    border-radius: 6px;
    transition: background var(--transition);
  }

  .nav-toggle:hover {
    background: rgba(0, 0, 145, 0.06);
  }

  .nav-toggle-icon--open {
    width: 23px;
    height: 23px !important;
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-toggle-icon--close {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-toggle-icon--close::before,
  .nav-toggle-icon--close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--color-nav);
    border-radius: 2px;
  }

  .nav-toggle-icon--close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle-icon--close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-toggle {
    position: relative;
  }

  .nav-toggle.active .nav-toggle-icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
  }

  .nav-toggle.active .nav-toggle-icon--close {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  /* ---------- Backdrop Overlay ---------- */
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--mobile-drawer-ease), visibility 0.35s var(--mobile-drawer-ease);
    backdrop-filter: blur(2px);
  }

  .mobile-nav-backdrop.is-open {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  /* ---------- Side Drawer Nav ---------- */
  .mobile-nav-backdrop,
  .mobile-nav-head,
  .mobile-nav-footer {
    display: block;
  }

  .mobile-nav-panel {
    display: flex;
  }

  .mobile-nav-body {
    display: block;
  }

  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: var(--mobile-drawer-width);
    height: 100vh;
    height: 100dvh;
    z-index: 1100;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.38s var(--mobile-drawer-ease);
    overflow: hidden;
    pointer-events: none;
  }

  .header-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #edeef0;
  }

  .mobile-nav-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-nav);
  }

  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--color-nav);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
  }

  .mobile-nav-close:hover {
    background: rgba(0, 0, 145, 0.06);
    color: var(--color-active);
  }

  .mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 24px;
    -webkit-overflow-scrolling: touch;
  }

  .header-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 12px;
  }

  .header-nav .nav-list>.menu-item {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .header-nav.open .nav-list>.menu-item {
    opacity: 1;
    transform: translateX(0);
  }

  .header-nav.open .nav-list>.menu-item:nth-child(1) {
    transition-delay: 0.06s;
  }

  .header-nav.open .nav-list>.menu-item:nth-child(2) {
    transition-delay: 0.1s;
  }

  .header-nav.open .nav-list>.menu-item:nth-child(3) {
    transition-delay: 0.14s;
  }

  .header-nav.open .nav-list>.menu-item:nth-child(4) {
    transition-delay: 0.18s;
  }

  .header-nav.open .nav-list>.menu-item:nth-child(5) {
    transition-delay: 0.22s;
  }

  .header-nav.open .nav-list>.menu-item:nth-child(6) {
    transition-delay: 0.26s;
  }

  .header-nav .nav-list>.menu-item>a {
    justify-content: space-between;
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 14px 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 10px;
    white-space: normal;
  }

  .header-nav .nav-list>.menu-item>a:hover,
  .header-nav .nav-list>.current-menu-item>a {
    background: #f5f5fc;
  }

  /* Sub-menu in drawer */
  .header-nav .nav-list .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 4px 12px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .header-nav .nav-list .sub-menu::before {
    display: none;
  }

  .header-nav .menu-item-has-children.open>.sub-menu {
    max-height: 400px;
    padding-bottom: 8px;
  }

  .header-nav .nav-list .sub-menu .menu-item a {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
  }

  .header-nav .menu-item-has-children>a::after {
    transition: transform 0.3s ease;
  }

  .header-nav .menu-item-has-children.open>a::after {
    transform: rotate(180deg);
  }

  /* Drawer footer */
  .mobile-nav-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-top: 1px solid #edeef0;
    background: #fafafa;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
  }

  .header-nav.open .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .btn-signin--drawer {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 20px;
    max-width: none;
  }

  .lang-btn--drawer {
    width: 100%;
    justify-content: flex-start;
    height: auto;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #edeef0;
  }

  .lang-btn--drawer .lang-dropdown {
    left: 0;
    right: 0;
    min-width: 100%;
  }

  .header-icons--drawer {
    justify-content: flex-start;
    gap: 12px;
  }

  .header-icons--drawer .header-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #edeef0;
  }

  /* =============================================
                                         MOBILE HERO — Figma 17:2814 / 17:2826 / 19:942
                                         ============================================= */
  .hero-section {
    min-height: 520px;
    justify-content: flex-start;
    padding: 80px 0 93px;
    overflow: visible;
  }

  .hero-bg-img {
    object-position: center bottom;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.35) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 0;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 21px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
  }

  .hero-title {
    font-size: 43px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 0;
    max-width: 340px;
  }

  .hero-desc {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 0;
    max-width: 314px;
  }

  .hero-btns {
    margin-top: 0;
  }

  .btn-hero-signin {
    padding: 10px 14px;
    font-size: 12px;
    line-height: 16px;
    border-radius: 10px;
  }

  /* Stats card — mobile layout */
  .stats-wrapper {
    bottom: -56px;
    padding: 0 16px;
  }

  .stats-wrapper .container {
    padding: 0;
    max-width: 370px;
  }

  .stats-card {
    width: 100%;
    height: 169px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    background: rgba(51, 51, 167, 0.82);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 24px;
    justify-content: flex-start;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 127px;
    margin: 0;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    align-self: center;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 12px;
    flex: 1;
    min-width: 0;
  }

  .stat-item--featured {
    flex: 0 0 130px;
    width: 130px;
    height: auto;
    min-height: 0;
    gap: 4px;
  }

  .stat-item--featured .stat-icon--featured {
    width: 33px;
    height: 33px;
  }

  .stat-item--featured .stat-number,
  .stat-item--featured .odometer,
  .stat-item--featured .odometer.odometer-auto-theme,
  .stat-item--featured .stat-suffix {
    font-size: 19px;
    line-height: 26px;
  }

  .stat-item--featured .stat-label {
    font-size: 11px;
    line-height: 16px;
    white-space: normal;
    max-width: 130px;
  }

  .stats-grid .stat-item {
    height: auto;
    min-height: 63px;
    gap: 2px;
    justify-content: space-between;
  }

  .stats-grid .stat-icon {
    width: 26px;
    height: 26px;
  }

  .stats-grid .stat-number,
  .stats-grid .odometer,
  .stats-grid .odometer.odometer-auto-theme,
  .stats-grid .stat-suffix {
    font-size: 16px;
    line-height: 21px;
  }

  .stats-grid .stat-label {
    font-size: 9px;
    line-height: 13px;
    white-space: normal;
  }

  .partners-section {
    padding-top: 88px;
    overflow-x: clip;
  }

  .partners-marquee-wrap {
    overflow-x: hidden;
  }

  /* Sign in — Figma 25:1443 */
  .signin-section {
    background: #f2f2f2;
    padding: 24px 0 32px;
  }

  .signin-section>.container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .signin-card {
    flex-direction: column;
    max-width: 370px;
    margin: 0 auto;
    border-radius: 14px 14px 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  /* Top panel — navy banner */
  .signin-left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 6px;
    width: 100%;
    min-height: 151px;
    padding: 24px 21px;
    text-align: left;
    border-radius: 14px 14px 0 0;
    background: #3333a7;
    gap: 0;
  }

  .signin-headline {
    grid-column: 1;
    grid-row: 1;
    font-size: 27px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin: 0;
  }

  .signin-sub {
    grid-column: 1;
    grid-row: 2;
    font-size: 9px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    max-width: 170px;
    margin: 0;
  }

  .signin-safe {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    gap: 6px;
    margin: 0;
  }

  .signin-safe-icon {
    width: 12px;
    height: 12px;
  }

  .signin-illustration {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 150px;
    max-width: 42vw;
    margin: 0;
  }

  .signin-illustration picture {
    display: block;
    width: 100%;
  }

  .signin-illustration img {
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 93px;
    object-fit: contain;
    object-position: center;
  }

  /* Bottom panel — form */
  .signin-right {
    width: 100%;
    min-height: 0;
    padding: 16px 10px 20px;
    gap: 16px;
    border-radius: 0 0 12px 12px;
    align-items: stretch;
    justify-content: flex-start;
  }

  .signin-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
  }

  .signin-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    gap: 35px;
  }

  .signin-tab-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 0;
    color: #9999d3;
    white-space: nowrap;
  }

  .signin-tab-btn.active {
    color: #000091;
  }

  .signin-tab-line {
    position: relative;
    width: 100%;
    height: 1px;
    margin-top: 0;
    background: #9999d3;
    border-radius: 0;
  }

  .signin-tab-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 39px;
    background: #ed2839;
    border-radius: 0;
    transition: left 0.25s ease, width 0.25s ease;
    z-index: 1;
  }

  .signin-form-wrap {
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
  }

  .signin-form {
    gap: 19px;
  }

  .signin-field-group {
    gap: 0;
  }

  .signin-field+.signin-field {
    margin-top: 0;
  }

  .signin-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #a5a5a5;
    padding: 6px 0 4px;
  }

  .signin-input {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 7px 10px;
    border-radius: 12px;
    border-width: 1px;
  }

  .signin-options {
    margin-top: 14px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .signin-remember {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #3333a7;
    gap: 5px;
    flex-shrink: 1;
    min-width: 0;
    display: block;
  }

  .signin-checkbox {
    width: 13px;
    height: 13px;
    border-radius: 2px;
    border-width: 1px;
  }

  .signin-forgot {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #3333a7;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .signin-actions {
    gap: 8px;
    width: 100%;
  }

  .signin-btn-main {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border-radius: 12px;
    gap: 8px;
  }

  .signin-btn-icon {
    width: 16px;
    height: 16px;
  }

  .signin-or,
  .signin-social {
    display: none;
  }

  .signin-auth-link {
    font-size: 13px;
    line-height: 18px;
  }

  /* How it works — mobile (Figma 14:2391) */
  .hiw-section {
    padding: 32px 0 40px;
  }

  .hiw-section .partners-title-wrap {
    margin-bottom: 47px;
  }

  .hiw-section .partners-title {
    font-size: 23px;
    line-height: 27px;
    padding-bottom: 12px;
  }

  .hiw-section .partners-title::after {
    height: 5px;
    bottom: -8px;
  }

  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hiw-step {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 224px;
    margin: 0 auto;
    gap: 0;
    flex: none;
  }

  .hiw-icon {
    order: 1;
    flex-shrink: 0;
    object-fit: contain;
    margin-bottom: 31px;
  }

  .hiw-step:nth-child(1) .hiw-icon {
    width: 69px;
    height: 60px;
  }

  .hiw-step:nth-child(3) .hiw-icon {
    width: 64px;
    height: 55px;
  }

  .hiw-step:nth-child(5) .hiw-icon {
    width: 59px;
    height: 66px;
  }

  .hiw-number {
    order: 2;
    width: 43px;
    height: 43px;
    min-width: 43px;
    border-radius: 27px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .hiw-text {
    order: 3;
    width: 100%;
    max-width: 192px;
    align-items: center;
    text-align: center;
    flex: none;
    min-width: 0;
  }

  .hiw-step:nth-child(3) .hiw-text {
    max-width: 224px;
  }

  .hiw-step-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    color: #000091;
    text-align: center;
  }

  .hiw-step-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    color: #4d4d4d;
    text-align: center;
  }

  .hiw-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 17px 0 22px;
  }

  .hiw-arrow img {
    width: 46px;
    height: 46px;
    transform: rotate(270deg);
  }

  /* Categories — mobile swiper (Figma 25:1445) */
  .categories-section {
    padding: 32px 0 40px;
  }

  .categories-section .cat-header {
    margin-bottom: 24px;
  }

  .categories-section .partners-title {
    font-size: 23px;
    line-height: 27px;
  }

  .cat-grid--desktop {
    display: none;
  }

  .cat-slider-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .categoriesSwiper {
    width: 100%;
    overflow: visible;
    padding-bottom: 4px;
  }

  .categoriesSwiper .swiper-slide {
    width: 226px;
    height: auto;
  }

  .cat-card--slide {
    display: block;
    width: 226px;
    height: 226px;
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .cat-card--slide .cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat-card--slide .cat-card-overlay {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0) 100%);
  }

  .cat-card-info--slide {
    padding: 16px;
    gap: 0;
  }

  .cat-card--slide .cat-stat {
    position: relative;
    display: inline-block;
    min-height: 24px;
    margin-bottom: 4px;
  }

  .cat-card--slide .cat-stat-num {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 600;
    line-height: 23px;
    color: #fff;
  }

  .cat-card--slide .cat-stat-label {
    position: absolute;
    left: 10px;
    top: 8px;
    z-index: 0;
    margin: 0;
    padding: 0;
    font-family: "Mayonice", "Kaushan Script", cursive;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.1;
    color: #f4c317;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    pointer-events: none;
  }

  .cat-card-title--slide {
    font-size: 19px;
    font-weight: 600;
    line-height: 23px;
    color: #fff;
  }

  .cat-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .cat-slider-prev,
  .cat-slider-next {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    border-radius: 500px !important;
    border: 1.1px solid #9999d3 !important;
    background: transparent !important;
    z-index: 1;
    transition: background var(--transition);
  }

  .cat-slider-prev:hover,
  .cat-slider-next:hover {
    background: #9999d3 !important;
  }

  .cat-slider-prev::after,
  .cat-slider-next::after {
    content: '' !important;
    display: block;
    width: 10px;
    height: 10px;
    background-image: url('../images/swiper-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .cat-slider-prev::after {
    transform: rotate(180deg);
  }

  .cat-slider-prev:hover::after,
  .cat-slider-next:hover::after {
    filter: brightness(0) invert(1);
  }

  /* Promo */
  .promo-section,
  .promo-inner {
    overflow-x: clip;
    min-height: 0;
  }

  .promo-rain {
    top: -24px;
  }

  .promo-rain-item {
    width: calc(var(--rain-width, 80px) * 0.48);
  }

  .promo-inner {
    align-items: flex-start;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .promo-text {
    max-width: 100%;
    width: 100%;
    flex-shrink: unset;
    padding: 50px 0px;
    gap: 10px;
  }

  .promo-image-wrap {
    width: 100%;
    max-width: 100%;
    flex-shrink: unset;
  }

  .promo-basket,
  .promo-shadow {
    max-width: 100%;
    height: 9px;
    width: 135px;
  }

  /* Hot deals — mobile grid slider (2 cards per column, no arrows) */
  .hd-section {
    padding: 32px 0 40px;
  }

  .hd-section .hd-header {
    margin-bottom: 24px;
  }

  .hd-grid--desktop {
    display: none;
  }

  .hd-slider-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .hotDealsSwiper {
    width: 100%;
    overflow: visible;
    padding-bottom: 2px;
  }

  .hotDealsSwiper .swiper-slide.hd-slide-col {
    width: 177px;
    flex-shrink: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
    box-sizing: border-box;
  }

  .hd-slide-col .hd-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 220px;
    overflow: hidden;
    background: #fff;
    border: none;
    border-radius: 9px;
    box-shadow: none;
    transform: none;
  }

  .hd-slide-col .hd-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .hd-slide-col .hd-card-img-wrap {
    flex: 0 0 87px;
    min-height: 87px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hd-slide-col .hd-card-img {
    width: 84px;
    height: 84px;
    max-height: 84px;
    object-fit: cover;
    transform: none;
  }

  .hd-slide-col .hd-card:hover .hd-card-img {
    transform: none;
  }

  .hd-slide-col .hd-card-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    padding: 0 12px 12px;
    box-sizing: border-box;
    text-align: center;
  }

  .hd-slide-col .hd-card-name {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #1e1e1e;
  }

  .hd-slide-col .hd-card-type,
  .hd-slide-col .hd-card-sku {
    margin: 0;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.2;
    color: #787878;
  }

  .hd-slide-col .hd-card-sku {
    font-size: 8px;
  }

  .hd-slide-col .hd-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
  }

  .hd-slide-col .hd-card-stars {
    display: flex;
    align-items: center;
    gap: 1px;
  }

  .hd-slide-col .hd-card-star {
    width: 9px;
    height: 9px;
    display: block;
    flex-shrink: 0;
  }

  .hd-slide-col .hd-card-rating-val {
    font-size: 7px;
    font-weight: 400;
    line-height: 1;
    color: #787878;
  }

  /* Imported products — mobile (Figma 29:2326 / 29:2325) */
  .imported-section {
    padding: 28px 0 32px;
  }

  .imported-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .imported-img-wrap {
    order: -1;
    width: 100%;
    max-width: 100%;
    flex: none;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: none;
  }

  .imported-img {
    width: 100%;
    height: 169px;
    min-height: 169px;
    max-height: 169px;
    object-fit: cover;
    border-radius: 9px;
    transform: none;
  }

  .imported-img-wrap:hover .imported-img {
    transform: none;
  }

  .imported-text {
    order: 2;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    gap: 6px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .imported-section .imported-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    color: #3333a7;
    text-align: center;
    white-space: normal;
  }

  .imported-section .imported-desc {
    font-size: 9px;
    font-weight: 500;
    line-height: 13.5px;
    color: #787878;
    text-align: center;
    max-width: 317px;
    margin: 0;
  }

  .imported-section .imported-btn {
    align-self: center;
    margin-top: 7px;
    padding: 6px 9px;
    gap: 5px;
    font-size: 8px;
    font-weight: 500;
    line-height: 11px;
    border-radius: 5px;
    transform: none;
  }

  .imported-section .imported-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .imported-section .imported-btn .promo-btn-arrow-wrap {
    width: 10px;
    height: 10px;
  }

  .imported-section .imported-btn .promo-btn-icon {
    width: 100%;
    height: 100%;
  }

  .imp-slider-inner {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .imp-slider-wrap {
    width: 100%;
    max-width: 100%;
  }

  .imp-slider-wrap,
  .imp-slide-img {
    height: auto;
    min-height: 240px;
    max-height: 360px;
  }

  .imp-slide-img {
    height: 100%;
    min-height: 240px;
    object-fit: cover;
  }

  /* Imported Product slider — mobile (Figma 29:2328 / 29:2646 / 29:2647) */
  .product-slider-section {
    background: #f2f2f2;
    padding: 0 0 32px;
    overflow-x: clip;
  }

  .product-slider-section .product-slider-header {
    padding: 28px 0 0;
    margin-bottom: 33px;
  }

  .product-slider-section .product-slider-header .partners-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 27px;
    color: #000091;
    white-space: normal;
  }

  .product-slider-row {
    display: block;
    overflow: visible;
  }

  .product-slider-row .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
  }

  .prod-swiper-container {
    width: 100%;
    overflow: hidden;
  }

  .product-slider-section .productSwiper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    height: 180px;
  }

  .product-slider-section .productSwiper .swiper-slide {
    width: 129px;
    height: auto;
    flex-shrink: 0;
  }

  .product-slider-section .prod-card {
    width: 129px;
    height: 160px;
    padding: 0;
    gap: 0;
    border-radius: 7px;
    justify-content: flex-start;
    transform: none;
    box-shadow: none;
  }

  .product-slider-section .prod-card:hover {
    transform: none;
    box-shadow: none;
    background-color: #fff;
  }

  .product-slider-section .prod-card-img-wrap {
    flex: 0 0 70px;
    min-height: 70px;
    padding: 3px;
  }

  .product-slider-section .prod-card-img {
    width: 61px;
    height: 61px;
    object-fit: cover;
  }

  .product-slider-section .prod-card-info {
    width: 100%;
    max-width: 81px;
    gap: 8px;
    padding: 0 4px 8px;
    box-sizing: border-box;
  }

  .product-slider-section .prod-card-name {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: #1e1e1e;
  }

  .product-slider-section .prod-card-type {
    font-size: 7px;
    line-height: 1.2;
  }

  .product-slider-section .prod-card-sku {
    font-size: 6px;
    line-height: 1.2;
  }

  .product-slider-section .prod-card-rating {
    gap: 5px;
  }

  .product-slider-section .prod-stars {
    gap: 1px;
  }

  .product-slider-section .prod-star {
    width: 7px;
    height: 7px;
  }

  .product-slider-section .prod-rating-val {
    font-size: 5px;
    line-height: 1;
  }

  .product-slider-section .prod-slider-nav {
    position: relative;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    pointer-events: auto;
  }

  .product-slider-section .prod-swiper-prev,
  .product-slider-section .prod-swiper-next {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    border-radius: 500px !important;
    border: 1.1px solid #9999d3 !important;
    background: transparent !important;
  }

  .product-slider-section .prod-swiper-prev:hover,
  .product-slider-section .prod-swiper-next:hover {
    background: #9999d3 !important;
  }

  .product-slider-section .prod-swiper-prev::after,
  .product-slider-section .prod-swiper-next::after {
    width: 10px;
    height: 10px;
  }

  .product-slider-section .prod-swiper-prev::after {
    transform: rotate(180deg);
  }

  .product-slider-section .prod-swiper-prev:hover::after,
  .product-slider-section .prod-swiper-next:hover::after {
    filter: brightness(0) invert(1);
  }

  /* Farm Fresh Banner — mobile (Figma 29:2672) */
  .farm-banner {
    position: relative;
    overflow: hidden;
    display: block;
  }

  .farm-banner-bg {
    position: absolute;
    top: 0;
    left: -20.49%;
    width: 137.49%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  .farm-banner .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 61.194% 1fr;
    align-items: stretch;
  }

  .farm-banner-content {
    position: relative;
    grid-column: 2;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    max-width: 137px;
    margin: 0;
    padding: 19.33px 12px 19.33px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-sizing: border-box;
  }

  .farm-banner-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 22.593px;
    color: #fff;
    word-break: break-word;
    width: 100%;
  }

  .farm-banner-desc {
    margin: 0 0 17px;
    font-size: 8px;
    font-weight: 500;
    line-height: 10.988px;
    color: #fff;
    word-break: break-word;
    width: 100%;
  }

  .farm-banner-btn {
    position: relative;
    z-index: 2;
    flex-direction: row-reverse;
    align-self: flex-start;
    gap: 2.705px;
    padding: 4.058px 6.763px;
    border-radius: 4.058px;
    font-size: 8px;
    font-weight: 600;
    line-height: 11px;
    background: #f15361;
    color: #fff;
    white-space: nowrap;
    transform: none;
    overflow: visible;
  }

  .farm-banner-btn:hover {
    transform: none;
    box-shadow: none;
    background: #f15361;
  }

  .farm-btn-arrow-wrap {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }

  .farm-btn-icon {
    width: 6px;
    height: 6px;
  }

  html[dir="rtl"] .farm-banner-bg {
    left: auto;
    right: -20.49%;
  }

  html[dir="rtl"] .farm-banner .container {
    grid-template-columns: 1fr 61.194%;
  }

  html[dir="rtl"] .farm-banner-content {
    grid-column: 1;
    padding: 19.33px 0 19.33px 12px;
    align-items: flex-end;
    text-align: right;
  }

  /* Video section — mobile (Figma 29:2689) */
  .video-section {
    background: #fff;
    padding: 37px 16px 0;
  }

  .video-section .container {
    padding: 0;
    max-width: 100%;
  }

  .video-card {
    position: relative;
    width: 100%;
    max-width: 370px;
    height: 208px;
    min-height: 0;
    margin: 0 auto;
    border-radius: 7.169px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    cursor: pointer;
  }

  .video-card-bg {
    position: absolute;
    width: 125.38%;
    height: 111.39%;
    left: -13.16%;
    top: -7.06%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  .video-card-overlay {
    border-radius: 7.169px;
    background: #1a1a1a;
    opacity: 0.3;
  }

  .video-card:hover .video-card-overlay {
    opacity: 0.3;
  }

  .video-play-btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
  }

  .video-play-btn:hover {
    transform: none;
  }

  .video-play-icon {
    width: 31.171px;
    height: 31.171px;
    display: block;
  }

  /* 3 Banners — mobile */
  .banners-section {
    background: #fff;
    padding: 37px 16px 0;
  }

  .banners-section .container {
    padding: 0;
    max-width: 100%;
  }

  .banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 176px);
    justify-content: center;
    gap: 16px;
    height: auto;
    width: 100%;
    max-width: 368px;
    margin: 0 auto;
  }

  .banner-item {
    display: block;
    width: 176px;
    height: 176px;
    flex: none;
    border-radius: 7.169px;
    overflow: hidden;
    transform: none;
    box-shadow: none;
  }

  .banner-item:nth-child(3) {
    grid-column: 1 / -1;
    width: 100%;
    height: 235px;
  }

  .banner-item:hover {
    transform: none;
    box-shadow: none;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 7.169px;
    transform: none;
  }

  .banner-item:hover .banner-img {
    transform: none;
  }

  /* Client Testimonials — mobile (Figma 32:1063 / 32:1068 / 32:1135) */
  .testimonials-section {
    background: #f2f2f2;
    padding: 37px 0 32px;
  }

  .testimonials-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonials-header {
    padding: 0;
    margin-bottom: 33px;
  }

  .testimonials-header.partners-title-wrap {
    margin-bottom: 33px;
  }

  .testimonials-section .partners-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 26.644px;
    white-space: normal;
    padding-bottom: 12px;
  }

  .testimonials-section .partners-title::after {
    height: 5px;
    bottom: -8px;
  }

  .testimonials-slider-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  .testimonials-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .testimonials-swiper-wrap {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    overflow: hidden;
  }

  .testimonials-section .testimonialsSwiper {
    width: 100%;
    overflow: visible;
    height: 165px;
  }

  .testimonials-section .testimonialsSwiper .swiper-slide {
    width: 248px;
    height: auto;
    flex-shrink: 0;
  }

  .testimonials-section .testimonial-card {
    width: 248px;
    min-height: 165px;
    padding: 14.035px;
    gap: 9.356px;
    border-radius: 14.94px;
    box-shadow: 0 5.848px 5.848px rgba(0, 0, 0, 0.01);
  }

  .testimonials-section .testimonial-quote {
    width: 18.713px;
    height: 15.204px;
  }

  .testimonials-section .testimonial-text {
    font-size: 8px;
    font-weight: 400;
    line-height: 1.5;
    color: #4d4d4d;
  }

  .testimonials-section .testimonial-client {
    padding-top: 4.678px;
    gap: 8px;
  }

  .testimonials-section .testimonial-reviewer {
    gap: 7.017px;
    min-width: 0;
    flex: 1;
  }

  .testimonials-section .testimonial-avatar {
    width: 32.747px;
    height: 32.747px;
  }

  .testimonials-section .testimonial-name {
    font-size: 9.356px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
    white-space: normal;
  }

  .testimonials-section .testimonial-role {
    font-size: 8.187px;
    font-weight: 400;
    line-height: 1.5;
    color: #999;
    white-space: normal;
  }

  .testimonials-section .testimonial-stars {
    gap: 0.585px;
    flex-shrink: 0;
  }

  .testimonials-section .testimonial-star {
    width: 11.695px;
    height: 11.695px;
  }

  .testimonials-section .testimonials-swiper-prev,
  .testimonials-section .testimonials-swiper-next {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    border-radius: 500px !important;
    border: 1.1px solid #9999d3 !important;
    background: transparent !important;
  }

  .testimonials-section .testimonials-swiper-prev:hover,
  .testimonials-section .testimonials-swiper-next:hover {
    background: #9999d3 !important;
  }

  .testimonials-section .testimonials-swiper-prev::after,
  .testimonials-section .testimonials-swiper-next::after {
    width: 10px;
    height: 10px;
  }

  .testimonials-section .testimonials-swiper-prev::after {
    transform: rotate(180deg);
  }

  .testimonials-section .testimonials-swiper-prev:hover::after,
  .testimonials-section .testimonials-swiper-next:hover::after {
    filter: brightness(0) invert(1);
  }

  /* Instagram — mobile slider (Figma 32:1314 / 83:4624) */
  .instagram-section {
    background: #f2f2f2;
    padding: 37px 0 32px;
  }

  .instagram-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .instagram-header {
    padding: 0;
    margin-bottom: 33px;
  }

  .instagram-header.partners-title-wrap {
    margin-bottom: 33px;
  }

  .instagram-section .partners-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 26.644px;
    white-space: normal;
    padding-bottom: 12px;
  }

  .instagram-section .partners-title::after {
    height: 5px;
    bottom: -8px;
  }

  .insta-grid--desktop {
    display: none;
  }

  .insta-slider-wrap {
    display: block;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    overflow: hidden;
  }

  .instagramSwiper {
    width: 100%;
    overflow: visible;
    height: 427px;
  }

  .instagramSwiper .swiper-slide.insta-slide-col {
    width: 177px;
    flex-shrink: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    box-sizing: border-box;
  }

  .insta-slide-col .insta-item {
    position: relative;
    display: block;
    width: 177px;
    height: 200px;
    overflow: hidden;
    text-decoration: none;
    transform: none;
  }

  .insta-slide-col .insta-item:hover {
    transform: none;
  }

  .insta-slide-col .insta-item-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .insta-slide-col .insta-item:hover .insta-item-img {
    transform: none;
  }

  .insta-slide-col .insta-item-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 175px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }

  .insta-slide-col .insta-item-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.867px;
    text-align: center;
    pointer-events: none;
  }

  .insta-slide-col .insta-item-title {
    width: 100%;
    margin: 0;
    font-size: 15.358px;
    font-weight: 700;
    line-height: 17.064px;
    color: #fff;
  }

  .insta-slide-col .insta-item-desc {
    width: 100%;
    max-width: 141px;
    margin: 0;
    font-size: 5.31px;
    font-weight: 400;
    line-height: 6.195px;
    color: #fff;
  }

  /* Stats — small screens */
  .stats-wrapper {
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .stats-card {
    min-width: 0;
    gap: 12px;
    padding: 14px 12px;
  }

  .stats-grid {
    column-gap: 10px;
    row-gap: 8px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 43px);
    line-height: 1.1;
    max-width: 100%;
    word-break: break-word;
  }

  .hero-subtitle,
  .hero-desc {
    max-width: 100%;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: border-box;
  }

  /* Newsletter — mobile (Figma 143:6057) */
  .newsletter-bar {
    background: #fff;
    padding: 32px 0;
  }

  .newsletter-bar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }

  .newsletter-text {
    width: 100%;
    max-width: 292px;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .newsletter-kicker {
    display: block;
    margin: 0 0 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 14.304px;
    color: #fb2c36;
  }

  .newsletter-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 25.747px;
    color: #3333a7;
    white-space: normal;
    margin: 0;
  }

  .newsletter-desc {
    width: 100%;
    max-width: 292px;
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 15.735px;
    color: #6a7282;
  }

  .newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 356px;
    height: 41px;
    padding: 3.67px;
    border-radius: 999px;
    background: #f3f4f6;
    box-sizing: border-box;
  }

  .newsletter-input {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 100%;
    border: none;
    border-radius: 999px;
    background: transparent;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    color: #0a0a0a;
  }

  .newsletter-input::placeholder {
    color: rgba(10, 10, 10, 0.5);
  }

  .newsletter-input:focus {
    border-color: transparent;
    outline: none;
  }

  .newsletter-btn {
    position: static;
    flex-shrink: 0;
    width: auto;
    height: auto;
    min-height: 33px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 14.68px;
    background: #3333a7;
  }

  .newsletter-btn:hover {
    box-shadow: none;
  }

  .newsletter-social {
    display: none;
  }

  /* Footer — mobile (Figma 44:5440) */
  .footer-main {
    background: #000091;
    padding: 16px 0 0;
  }

  .footer-main .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0;
  }

  .footer-col-brand {
    width: 100%;
    max-width: 203px;
    padding: 13.5px 8.5px;
    box-sizing: border-box;
  }

  .footer-brand-logo {
    margin-bottom: 0;
  }

  .footer-logo-icon {
    width: 114px;
    max-width: 100%;
    height: auto;
  }

  .footer-contact-desktop {
    display: none;
  }

  .footer-links-row {
    display: flex;
    align-items: flex-start;
    gap: 31px;
    width: 100%;
    max-width: 369px;
    margin-top: 0;
  }

  .footer-col {
    width: auto;
    max-width: none;
    min-width: 0;
    flex: 0 1 auto;
    padding: 10px;
    box-sizing: border-box;
  }

  .footer-col-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 0 8px;
    white-space: normal;
  }

  .footer-links {
    gap: 4px;
  }

  .footer-links a {
    font-size: 8px;
    font-weight: 400;
    line-height: 10px;
    white-space: nowrap;
  }

  .footer-contact-mobile {
    display: block;
    width: 100%;
    max-width: 369px;
    margin-top: 0;
  }

  .footer-contact-intro-mobile {
    margin: 0;
    padding: 10px 9px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #ed2839;
  }

  .footer-contact-row--mobile {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-left: 9px;
    flex-wrap: nowrap;
  }

  .footer-contact-row--mobile .footer-contact-item {
    gap: 8px;
    font-size: 8px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
  }

  .footer-contact-row--mobile .footer-contact-item:first-child img {
    width: 11px;
    height: 11px;
  }

  .footer-contact-row--mobile .footer-contact-item:last-child img {
    width: 13px;
    height: 11px;
  }

  .footer-contact-row--mobile .footer-contact-or {
    font-size: 8px;
    line-height: 1.5;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-height: 0;
    margin-top: 16px;
    padding: 0 0 16px;
    border-top: none;
  }

  .footer-bottom-row {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 0 9px;
    box-sizing: border-box;
  }

  .footer-payments {
    gap: 3.5px;
    flex-wrap: nowrap;
  }

  .footer-pay-item {
    width: 18px;
    height: 13px;
    min-width: 18px;
    border-radius: 4px;
    border-width: 0.22px;
  }

  .footer-pay-item img {
    max-width: 100%;
    max-height: 100%;
  }

  .footer-pay-item[aria-label="Apple Pay"] img,
  .footer-pay-item[aria-label="Visa"] img,
  .footer-pay-item[aria-label="Discover"] img,
  .footer-pay-item[aria-label="Mastercard"] img {
    width: auto;
    height: auto;
    max-height: 7px;
  }

  .footer-pay-item--secure {
    width: 26px;
    height: 13px;
    min-width: 26px;
    border-radius: 2px;
    padding: 1px 2px;
    gap: 0;
  }

  .footer-pay-lock {
    width: 4px !important;
    height: 4px !important;
  }

  .footer-pay-secure-top {
    font-size: 4.5px;
    line-height: 1;
  }

  .footer-pay-secure-bottom {
    font-size: 4.9px;
    line-height: 1;
  }

  .footer-social-mobile {
    display: flex;
    align-items: center;
    gap: 6.6px;
    flex-shrink: 0;
  }

  .footer-social-mobile .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    color: #fff;
    text-decoration: none;
  }

  .footer-social-mobile .footer-social-link i {
    font-size: 13px;
    line-height: 1;
    color: #fff;
  }

  .footer-social-mobile .footer-social-link svg,
  .footer-social-mobile .footer-social-link img {
    width: 13px;
    height: 13px;
    display: block;
    object-fit: contain;
  }

  .footer-social-mobile .footer-social-link svg path {
    fill: #fff;
  }

  .footer-copyright {
    order: 2;
    width: 100%;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid #fff;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: normal;
  }

  .footer-logo-en,
  .footer-logo-ar {
    width: auto;
    max-width: 100%;
    height: auto !important;
  }

  .stats-card {
    gap: 8px;
    padding: 12px 10px;
  }

  .stat-item--featured {
    flex: 0 0 118px;
    width: 118px;
  }

  .stat-item--featured .stat-label {
    max-width: 118px;
  }

  .stat-divider {
    height: 110px;
  }

  .stat-item--featured .stat-number,
  .stat-item--featured .odometer,
  .stat-item--featured .odometer.odometer-auto-theme,
  .stat-item--featured .stat-suffix {
    font-size: 16px;
    line-height: 22px;
  }

  .stats-grid .stat-number,
  .stats-grid .odometer,
  .stats-grid .odometer.odometer-auto-theme,
  .stats-grid .stat-suffix {
    font-size: 14px;
    line-height: 18px;
  }

  .about-partners-title::after,
  .partners-title::after {
    bottom: -10px;
  }

  .promo-subtitle {
    font-size: 13px;
    margin: 0;
    line-height: 15px;
  }

  .promo-text>h2 {
    font-size: 22px;
    line-height: 27px;
  }

  img.promo-basket {
    width: 127px;
    height: 118px;
  }

  .promo-btn {
    font-size: 7px;
    padding: 6px 8px;
    line-height: 9px;
    border-radius: 6px;
  }

  .promo-btn-arrow-wrap {
    width: 10px;
    height: 10px;
  }

  .imported-btn {
    font-size: 9px;
    padding: 7px 9px;
  }

  .imported-desc {
    font-size: 9px;
    line-height: 13.565px;
  }

  .imported-title {
    line-height: 27px;
  }

  .imported-desc {
    margin-bottom: 9px;
  }

  /* About intro — mobile (Figma 151:6069) */
  .about-intro-section {
    background: #fbd4d7;
    padding: 19px 0 28px;
    overflow: hidden;
  }

  .about-intro-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-intro-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 403px;
    margin: 0 auto;
  }

  .about-intro-photo-col {
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    padding: 0;
    margin-bottom: 6px;
    justify-content: center;
  }

  .about-intro-photo-wrap {
    width: 158px;
    height: 158px;
    border-radius: 95.35px 19.07px 95.35px 19.07px;
    overflow: hidden;
    padding: 3.18px 0;
    box-sizing: border-box;
  }

  .about-intro-photo {
    position: absolute;
    left: 0.11%;
    top: 3.02%;
    width: 151px;
    height: 151px;
    max-width: none;
    object-fit: cover;
  }

  .about-intro-content {
    align-items: center;
    width: 100%;
    max-width: 272px;
    gap: 17px;
  }

  .about-intro-text {
    align-items: center;
    gap: 8.88px;
    text-align: center;
    width: 100%;
  }

  .about-intro-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 28.41px;
    max-width: 232px;
    width: 100%;
  }

  .about-intro-tagline {
    font-size: 12px;
    font-weight: 600;
    line-height: 14.21px;
    max-width: 232px;
    width: 100%;
  }

  .about-intro-text>p,
  .about-intro-text p {
    font-size: 8px;
    font-weight: 400;
    line-height: 10.3px;
    max-width: 264px;
    width: 100%;
    margin: 0;
  }

  .about-intro-text>p+p,
  .about-intro-text p+p {
    margin-top: 6px;
  }

  .about-intro-stats {
    justify-content: center;
    align-items: center;
    gap: 10.24px;
    width: 100%;
    max-width: 221px;
    flex-wrap: nowrap;
    row-gap: 0;
  }

  .about-stat {
    width: auto;
    height: auto;
    min-height: 0;
    gap: 3.9px;
    padding: 3.9px;
    flex: 0 1 auto;
  }

  .about-stat:nth-child(1),
  .about-stat:nth-child(2),
  .about-stat:nth-child(3) {
    width: auto;
    height: auto;
  }

  .about-stat-num {
    height: auto;
    min-height: 0;
  }

  .about-stat-prefix,
  .about-stat-num .odometer,
  .about-stat-num .odometer.odometer-auto-theme {
    font-size: 37.04px;
    line-height: 1.1;
    letter-spacing: 0.49px;
  }

  .about-stat-label-wrap {
    padding: 0 3.9px 3.9px;
  }

  .about-stat-label {
    font-size: 6.97px;
    line-height: 9.75px;
    white-space: nowrap;
  }

  .about-intro-deco--tl-lg {
    left: -27px;
    height: 97px;
    width: 79px;
    transform: rotate(135deg);
    top: -13px;
  }

  .about-intro-deco--tl-sm {
    height: 59px;
    width: 59px;
    top: -24px;
    transform: rotate(135deg);
    left: 50px;
  }

  img.about-intro-deco.about-intro-deco--bl {
    width: 105.263px;
    height: 70.088px;
    top: auto;
    bottom: 0;
  }

  img.about-intro-deco.about-intro-deco--tr {
    width: 98.216px;
    height: 65.397px;
    top: 0;
  }

  .about-intro-deco--br-pepper {
    height: 40px;
    width: 40px;
    left: auto;
    right: 42px;
    top: auto;
    bottom: 55px;
  }

  img.about-intro-deco.about-intro-deco--br-shipping {
    height: 82px;
    width: 64px;
    left: auto;
    right: -23px;
    top: auto;
    bottom: 14px;
  }

  .about-intro-deco-group--br {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }

  .about-quality-section {
    padding: 38px 0 28px;
    box-shadow: none;
    min-height: 0;
  }

  .about-quality-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-quality-inner {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 403px;
    margin: 0 auto;
  }

  .about-quality-gallery {
    order: -1;
    flex: none;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 112.8px);
    grid-template-rows: repeat(2, 112.8px);
    gap: 4.4px 6px;
    justify-content: center;
  }

  .about-quality-img-wrap {
    width: 112.8px;
    height: 112.8px;
    border-radius: 17.9px;
    aspect-ratio: 1;
  }

  .about-quality-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-quality-img--2 {
    left: 0.3%;
    top: -0.14%;
    width: 100%;
    height: 100%;
    max-width: none;
  }

  .about-quality-img-wrap--offset-lg .about-quality-img--3 {
    width: 139%;
    height: 101%;
    left: -16.05%;
    top: -0.28%;
    max-width: none;
  }

  .about-quality-content {
    flex: none;
    max-width: 302px;
    width: 100%;
    padding-top: 0;
    gap: 18px;
    align-items: center;
  }

  .about-quality-head {
    gap: 8.88px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .about-quality-section .about-section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 28.41px;
    max-width: 232px;
    width: 100%;
    text-align: center;
  }

  .about-quality-section .about-section-subtitle {
    font-size: 12px;
    font-weight: 600;
    line-height: 14.21px;
    max-width: 232px;
    width: 100%;
    text-align: center;
  }

  .about-quality-text {
    width: 100%;
  }

  .about-quality-text p {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    max-width: 302px;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .about-quality-text p+p {
    margin-top: 6px;
  }

  .about-quality-features {
    gap: 21.84px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 274px;
    margin: 0 auto;
  }

  .about-quality-feature {
    gap: 6.24px;
    width: auto;
    flex: 0 1 auto;
  }

  .about-quality-feature:nth-child(1),
  .about-quality-feature:nth-child(2),
  .about-quality-feature:nth-child(3),
  .about-quality-feature:nth-child(4) {
    width: auto;
  }

  .about-quality-feature-icon {
    height: 22px;
    max-width: 24px;
    width: auto;
  }

  .about-quality-feature-label {
    font-size: 9px;
    font-weight: 600;
    line-height: 12.48px;
  }

  img.about-quality-deco.about-quality-deco--melon {
    width: 104.993px;
    height: 103.062px;
    transform: rotate(-30.22deg);
    opacity: 1;
    left: -40px;
  }

  img.about-quality-deco.about-quality-deco--grape {
    bottom: 0;
    width: 77.012px;
    height: 100.305px;
    transform: rotate(58.513deg);
    opacity: 1;
    right: -18px;
  }

  /* Our Commitment — mobile (Figma 151:6078) */
  .about-commitment-section {
    min-height: 0;
    padding: 32px 0 180px;
  }

  .about-commitment-section .container {
    padding-left: 28px;
    padding-right: 28px;
    max-width: 403px;
    margin: 0 auto;
  }

  .about-commitment-head {
    gap: 8.88px;
    max-width: 302px;
    margin: 0 auto 14px;
  }

  .about-commitment-section .about-section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 28.41px;
    max-width: 232px;
    width: 100%;
  }

  .about-commitment-section .about-section-subtitle {
    font-size: 12px;
    font-weight: 600;
    line-height: 14.21px;
    max-width: 232px;
    width: 100%;
  }

  .about-commitment-desc {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    max-width: 302px;
    width: 100%;
  }

  .about-commitment-features {
    gap: 28.39px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 302px;
    margin: 0 auto;
  }

  .about-commitment-feature {
    gap: 11.8px;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
  }

  .about-commitment-feature:nth-child(1) {
    max-width: 45.73px;
  }

  .about-commitment-feature:nth-child(2) {
    max-width: 60.48px;
  }

  .about-commitment-feature:nth-child(3) {
    max-width: 66.38px;
  }

  .about-commitment-feature-icon {
    width: 29.5px;
    height: 29.5px;
  }

  .about-commitment-feature-icon--handshake {
    width: 30.24px;
    height: 30.98px;
  }

  .about-commitment-feature-label {
    font-size: 10px;
    font-weight: 400;
    line-height: 14.75px;
  }

  /* Commitment decos — Figma 151:6078 */
  .about-commitment-deco {
    display: block;
    opacity: 1;
  }

  .about-commitment-deco-group {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 0;
    bottom: 20px;
    height: 147px;
  }

  .about-commitment-deco-group--left {
    left: 0;
    width: 100%;
    transform: scaleX(-1);
    transform-origin: center center;
  }

  .about-commitment-deco-group--right {
    left: calc(221 / 403 * 100%);
    width: 153.1px;
    right: auto;
  }

  .about-commitment-deco-group--left .about-commitment-deco--beet-left {
    left: auto;
    top: 0;
    right: 45px;
    bottom: auto;
    width: 138.33px;
    height: auto;
    transform: none;
  }

  .about-commitment-deco-group--left .about-commitment-deco--beet-left-sm {
    left: auto;
    top: 85.23px;
    right: 30px;
    bottom: auto;
    width: 60px;
    height: 60px;
    transform: none;
  }

  .about-commitment-deco-group--right .about-commitment-deco--beet-right {
    left: auto;
    top: 0;
    right: 45px;
    bottom: auto;
    width: 138.33px;
    height: auto;
  }

  .about-commitment-deco-group--right .about-commitment-deco--beet-right-sm {
    left: 60px;
    top: 85.23px;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
  }

  /* Our Success Partner — mobile (Figma 151:6081) */
  .about-partners-figure {
    display: none;
  }

  .about-partners-section {
    padding: 33px 0 51px;
    background: #fdf3d1;
  }

  .about-partners-section .container {
    padding-left: 34px;
    padding-right: 34px;
    max-width: 403px;
    margin: 0 auto;
  }

  .about-partners-layout {
    display: block;
  }

  .about-partners-content {
    align-items: center;
    max-width: 334px;
    width: 100%;
    margin: 0 auto;
    gap: 26px;
  }

  .about-partners-head {
    align-items: center;
    max-width: 240px;
    width: 100%;
    gap: 8.55px;
    padding: 0;
  }

  .about-partners-section .about-partners-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 26.64px;
    text-align: center;
    width: 100%;
  }

  .about-partners-section .about-partners-title::after {
    display: none;
  }

  .about-partners-underline {
    width: 127.88px;
    height: 4.66px;
  }

  .about-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 76.39px);
    gap: 10.42px;
    justify-content: center;
    max-width: 334px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .about-partner-logo-card {
    width: 76.39px;
    height: 51.22px;
    min-height: 0;
    padding: 10.42px;
    border: 0.868px solid #a5a5a5;
    border-radius: 13.89px;
    box-sizing: border-box;
  }

  .about-partner-logo-img {
    max-height: 38.2px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .about-partners-deco {
    display: none;
  }

  /* What Our Clients Say — mobile (Figma 151:6085) */
  .about-testimonials-section {
    padding: 34px 0 0;
    background: #e6f4ea;
    overflow: hidden;
  }

  .about-testimonials-section .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 403px;
    margin: 0 auto;
  }

  .about-testimonials-section .about-testimonials-title-wrap {
    text-align: center;
    margin: 0 auto 24px;
    padding: 0;
    max-width: 254px;
  }

  .about-testimonials-section .partners-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 26.64px;
    text-align: center;
    white-space: normal;
    padding-bottom: 8.55px;
  }

  .about-testimonials-section .partners-title::after {
    width: 127.88px;
    height: 4.66px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: linear-gradient(to right,
        #ed2839 0%,
        #ed2839 50%,
        #000091 50%,
        #000091 100%);
  }

  .about-testimonials-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: 387px;
    margin: 0 auto;
    position: relative;
  }

  .about-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 9.62px;
    width: 177px;
    max-width: 177px;
    flex-shrink: 0;
  }

  .about-testimonials-grid .about-testimonial-card:nth-child(n + 4) {
    display: none;
  }

  .about-testimonial-card {
    width: 177px;
    min-height: 106.97px;
    padding: 10.02px;
    border-radius: 10.67px;
    gap: 6.68px;
    box-shadow: 0 4.18px 4.18px rgba(0, 0, 0, 0.01);
  }

  .about-testimonial-quote {
    width: 13.36px;
    height: 10.85px;
  }

  .about-testimonial-text {
    font-size: 5.84px;
    line-height: 1.5;
    color: #4d4d4d;
    max-width: 156.96px;
  }

  .about-testimonial-client {
    min-height: 0;
    padding-top: 3.34px;
    width: 100%;
    max-width: 156.96px;
  }

  .about-testimonial-reviewer {
    gap: 5.01px;
    max-width: 70.13px;
  }

  .about-testimonial-avatar {
    width: 23.38px;
    height: 23.38px;
  }

  .about-testimonial-name {
    font-size: 6.68px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
  }

  .about-testimonial-role {
    font-size: 5.84px;
    line-height: 1.5;
    color: #999;
  }

  .about-testimonial-stars {
    gap: 0.42px;
  }

  .about-testimonial-stars img {
    width: 8.35px;
    height: 8.35px;
  }

  .about-testimonials-figure {
    display: block;
    flex: 0 0 220px;
    width: 220px;
    margin: 0;
    margin-left: -11px;
    align-self: flex-end;
    pointer-events: none;
  }

  .about-testimonials-figure img {
    display: block;
    width: 220px;
    height: 402px;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
  }

  /* Contact info card — Figma 44:5793 */
  .contact-info-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: 100%;
    min-height: 111px;
    padding: 20px 19px;
    border-radius: 12.61px;
    margin: 0 auto;
  }

  .contact-info-divider {
    display: block;
    flex: 0 0 1px;
    width: 1px;
    height: 71px;
    background: #e4e7e9;
    align-self: center;
  }

  .contact-info-divider:first-of-type {
    margin: 0 11px 0 8px;
  }

  .contact-info-divider:last-of-type {
    margin: 0 18px 0 10px;
  }

  .contact-info-block {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
  }

  .contact-info-block--location {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    gap: 10.87px;
  }

  .contact-info-block--email {
    flex: 0 0 107.73px;
    width: 107.73px;
    gap: 12.8px;
  }

  .contact-info-block--phone {
    flex: 0 0 72.08px;
    width: 72.08px;
    gap: 13.2px;
  }

  .contact-info-icon--location {
    width: 19.95px;
    height: 23.66px;
  }

  .contact-info-icon--email {
    width: 19.73px;
    height: 19.2px;
  }

  .contact-info-icon--phone {
    width: 20.36px;
    height: 20.36px;
  }

  .contact-info-text-wrap {
    padding: 2.13px;
    width: 100%;
  }

  .contact-info-text {
    font-size: 8px;
    font-weight: 500;
    line-height: 12.8px;
    color: #333;
    white-space: normal;
    text-align: center;
  }

  .contact-info-block--phone .contact-info-text {
    line-height: 13.21px;
  }

  /* Contact form — Figma 44:5754 */
  .contact-form-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 25.23px;
    border-radius: 12.61px;
    gap: 14.72px;
    margin: 0 auto;
  }

  .contact-form-head {
    gap: 0;
    width: 100%;
  }

  .contact-form-title {
    padding: 4.21px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 16.82px;
    color: #000091;
  }

  .contact-form-desc {
    max-width: 316.39px;
    padding: 4.21px 0;
    font-size: 8px;
    line-height: 10.51px;
    color: #787878;
  }

  .contact-form-fields {
    gap: 6.31px;
    max-width: 100%;
  }

  .contact-form-row {
    flex-direction: row;
    gap: 5.78px;
    max-width: 100%;
  }

  .contact-form-row .contact-field--wide {
    flex: 0 0 181.85px;
    width: 181.85px;
    max-width: 181.85px;
  }

  .contact-form-row .contact-field--narrow {}

  .contact-input,
  .contact-textarea {
    border-width: 0.36px;
    border-color: #e4e7e9;
    border-radius: 4.76px;
    font-size: 5.04px;
    line-height: 7.2px;
  }

  .contact-input {
    height: 18.92px;
    padding: 0 5.4px;
  }

  .contact-input::placeholder,
  .contact-textarea::placeholder {
    font-size: 5.04px;
    line-height: 7.2px;
    color: #a5a5a5;
  }

  .contact-textarea {
    height: 64.65px;
    min-height: 64.65px;
    padding: 3.96px 5.4px;
    resize: none;
  }

  .contact-submit {
    width: 109.84px;
    padding: 6.31px 10.51px;
    border-radius: 8px;
    font-size: 8.41px;
    font-weight: 600;
    line-height: 12.61px;
  }

  .contact-layout {
    flex-direction: column-reverse;
  }

  /* Inner page hero — Figma 44:5740 */
  .inner-page .cat-page-hero {
    height: 295px;
    min-height: 295px;
  }

  .inner-page .cat-page-hero-bg {
    overflow: hidden;
  }

  .inner-page .cat-page-hero-img {
    position: absolute;
    top: 0;
    left: -112.35%;
    width: 220.2%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
  }

  .inner-page .cat-page-hero-overlay {
    background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0) 100%);
  }

  .inner-page .cat-page-hero-content {
    gap: 2px;
    padding: 8px 16px;
  }

  .inner-page .cat-page-hero-title {
    font-size: 43px;
    font-weight: 700;
    line-height: 46.86px;
    white-space: normal;
    max-width: 100%;
  }

  .inner-page .cat-page-breadcrumb {
    gap: 0;
    max-width: 100%;
  }

  .inner-page .cat-page-breadcrumb-link,
  .inner-page .cat-page-breadcrumb-current {
    font-family: 'Inter', var(--font-main);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px;
  }

  .inner-page .cat-page-breadcrumb-link {
    color: #e0e0e0;
  }

  .inner-page .cat-page-breadcrumb-current {
    color: #fff;
  }

  .inner-page .cat-page-breadcrumb-sep {
    width: auto;
    height: auto;
    flex-shrink: 0;
  }

  .inner-page .cat-page-breadcrumb-sep img {
    width: 8px;
    height: 4px;
    transform: rotate(-90deg);
    filter: brightness(0) invert(0.88);
  }

  /* ── Mobile bottom nav — Figma 83:4731 ── */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: block;
    background: #fff;
    border-top: 0.956px solid #f3f4f6;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-bottom-nav__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 44px;
    min-height: 64px;
    padding: 10px 36.5px 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .mobile-bottom-nav__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    text-decoration: none;
    color: #000091;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-nav__item.is-active {
    color: #f15361;
  }

  .mobile-bottom-nav__item.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2.23px;
    transform: translateX(-50%);
    width: 34px;
    height: 2px;
    background: #f15361;
    border-radius: 1px;
  }

  .mobile-bottom-nav__icon-wrap {
    position: relative;
    display: block;
    line-height: 0;
  }

  .mobile-bottom-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    line-height: 0;
  }

  .mobile-bottom-nav__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-bottom-nav__label {
    margin-top: 4px;
    font-family: 'Poppins', var(--font-main);
    font-size: 8.575px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    text-align: center;
    color: inherit;
  }

  .mobile-bottom-nav__item--cart .mobile-bottom-nav__label {
    margin-top: 4px;
    margin-left: 0;
  }

  .mobile-bottom-nav__badge-wrap {
    position: absolute;
    top: -2px;
    right: -5px;
    left: auto;
    line-height: 0;
    pointer-events: none;
  }

  .mobile-bottom-nav__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11.732px;
    height: 11.732px;
    border-radius: 36.663px;
    background: #f15361;
    font-family: 'Poppins', var(--font-main);
    font-size: 7.333px;
    font-weight: 500;
    line-height: 8.799px;
    letter-spacing: -0.1393px;
    color: #fff;
    text-align: center;
  }

  .mobile-bottom-nav__item--lang {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
  }

  .mobile-bottom-nav__lang-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 24px;
    flex-shrink: 0;
  }

  .mobile-bottom-nav__lang-code {
    font-family: 'Inter', var(--font-main);
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: #000091;
    white-space: nowrap;
  }

  .mobile-bottom-nav__icon--globe {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* Match vertical footprint of icon + label items */
  .mobile-bottom-nav__item--lang::before {
    content: '';
    display: block;
    height: calc(4px + 8.575px);
    width: 1px;
    visibility: hidden;
    order: 2;
  }

  .mobile-bottom-nav__lang-row {
    order: 1;
  }

  .mobile-bottom-nav__lang-dropdown {
    order: 3;
    top: auto;
    bottom: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 103px;
  }

  .mobile-bottom-nav__lang-dropdown.lang-dropdown {
    transform: translateY(-8px);
  }

  .mobile-bottom-nav__item--lang.open .mobile-bottom-nav__lang-dropdown {
    transform: translateY(0);
  }

  @media (max-width: 400px) {
    .mobile-bottom-nav__inner {
      gap: 16px;
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  /* ── Mobile search page — Figma 96:7190 ── */
  .mini-cart-dropdown {
    display: none !important;
  }

  .search-panel--desktop {
    display: none !important;
  }

  .search-panel--mobile {
    display: block;
    position: fixed;
    inset: 0;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
    box-shadow: none;
    background: #fff;
    z-index: 2;
  }

  .search-overlay.is-open .search-panel--mobile {
    opacity: 1;
    visibility: visible;
  }

  .search-overlay .search-backdrop {
    display: none;
  }

  .mobile-search {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
  }

  .mobile-search__header {
    display: flex;
    align-items: center;
    gap: 6.756px;
    flex-shrink: 0;
    padding: 10.134px 13.513px 10.979px;
    border-bottom: 0.845px solid #f3f4f6;
  }

  .mobile-search__form {
    flex: 1;
    min-width: 0;
  }

  .mobile-search__field {
    display: flex;
    align-items: center;
    gap: 6.756px;
    padding: 8.445px 13.513px;
    border-radius: 999px;
    background: #f3f4f6;
  }

  .mobile-search__field-icon {
    width: 13.513px;
    height: 13.513px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }

  .mobile-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0;
    font-family: 'Poppins', var(--font-main);
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    color: #0a0a0a;
    outline: none;
  }

  .mobile-search__input::placeholder {
    color: rgba(10, 10, 10, 0.5);
  }

  .mobile-search__input:disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(10, 10, 10, 0.5);
  }

  .mobile-search__cancel {
    flex-shrink: 0;
    border: none;
    background: none;
    padding: 0;
    font-family: 'Poppins', var(--font-main);
    font-size: 11px;
    font-weight: 500;
    line-height: 15.202px;
    color: #1a3a6c;
    cursor: pointer;
    white-space: nowrap;
  }

  .mobile-search__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-search__section {
    padding-left: 12.345px;
    padding-right: 12.345px;
  }

  .mobile-search__section--recent {
    padding-top: 12.345px;
  }

  .mobile-search__section--trending,
  .mobile-search__section--popular {
    padding-top: 15.432px;
  }

  .mobile-search__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-search__section-head--trending {
    justify-content: flex-start;
    gap: 4.63px;
  }

  .mobile-search__section-title {
    margin: 0;
    font-family: 'Poppins', var(--font-main);
    font-size: 12px;
    font-weight: 600;
    line-height: 13.889px;
    color: #1a3a6c;
  }

  .mobile-search__text-btn {
    border: none;
    background: none;
    padding: 0;
    font-family: 'Poppins', var(--font-main);
    font-size: 10px;
    font-weight: 500;
    line-height: 11.574px;
    color: #99a1af;
    cursor: default;
    white-space: nowrap;
  }

  .mobile-search__recent-list {
    margin: 0;
    padding: 7.716px 0 0;
    list-style: none;
  }

  .mobile-search__recent-list li + li .mobile-search__recent-item {
    padding-top: 10.802px;
  }

  .mobile-search__recent-item {
    display: flex;
    align-items: center;
    gap: 9.259px;
    width: 100%;
    padding: 0 0 7.716px;
    border: none;
    background: none;
    text-align: left;
    cursor: default;
    font-family: 'Poppins', var(--font-main);
    font-size: 11px;
    font-weight: 500;
    line-height: 13.889px;
    color: #364153;
  }

  .mobile-search__recent-icon {
    width: 12.345px;
    height: 12.345px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }

  .mobile-search__trending-icon {
    width: 12.345px;
    height: 12.345px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }

  .mobile-search__tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 9.259px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .mobile-search__tags::-webkit-scrollbar {
    display: none;
  }

  .mobile-search__tag {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    background: #f3f4f6;
    padding: 4.63px 9.259px;
    font-family: 'Poppins', var(--font-main);
    font-size: 9px;
    font-weight: 500;
    line-height: 12.731px;
    color: #364153;
    cursor: default;
    white-space: nowrap;
  }

  .mobile-search__products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10.738px;
    margin-top: 9.259px;
  }

  .mobile-search__product-card {
    display: flex;
    flex-direction: column;
    border: 0.334px solid #f3f4f6;
    border-radius: 3.342px;
    background: #fff;
    padding: 4.344px;
    min-width: 0;
  }

  .mobile-search__product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 2.673px;
    background: #f7f8fa;
    padding: 2.673px;
    overflow: hidden;
  }

  .mobile-search__product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .mobile-search__product-title {
    margin: 0;
    padding-top: 7.517px;
    font-family: 'Poppins', var(--font-main);
    font-size: 9.665px;
    font-weight: 600;
    line-height: 1.2;
    color: #0a0a0a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-search__product-category {
    margin: 0;
    padding-top: 2px;
    font-family: 'Poppins', var(--font-main);
    font-size: 8.591px;
    font-weight: 500;
    line-height: 1.2;
    color: #99a1af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-search .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body.search-open .mobile-bottom-nav {
    z-index: 1000;
  }
}