    :root {
      --charcoal-950: #050505;
      --charcoal-900: #0b0b0c;
      --charcoal-850: #111113;
      --charcoal-800: #171719;
      --charcoal-700: #242427;
      --ash-500: #898681;
      --ash-300: #c9c2b8;
      --ash-100: #f4efe8;
      --ember-700: #9d3616;
      --ember-600: #bd4b1d;
      --ember-500: #d86a28;
      --gold-500: #d3a044;
      --gold-300: #f0c873;
      --white: #ffffff;
      --line: rgba(255, 255, 255, 0.12);
      --line-strong: rgba(240, 200, 115, 0.28);
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
      --radius: 8px;
      --content: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--charcoal-950);
    }

    body {
      margin: 0;
      color: var(--ash-100);
      background:
        linear-gradient(180deg, var(--charcoal-950) 0%, #0a0908 38%, #11100e 100%);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 46px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 42px);
      opacity: 0.65;
    }

    body::after {
      content: "";
      position: fixed;
      inset: auto 0 0;
      height: 42vh;
      pointer-events: none;
      z-index: -1;
      background: linear-gradient(0deg, rgba(189, 75, 29, 0.28), rgba(189, 75, 29, 0));
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(var(--content), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(5, 5, 5, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
      transition: background 220ms ease, box-shadow 220ms ease;
    }

    .site-header.is-scrolled {
      background: rgba(5, 5, 5, 0.92);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-logo {
      width: 50px;
      height: 50px;
      display: block;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-text {
      display: grid;
      line-height: 1.15;
    }

    .brand-name {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--white);
      white-space: nowrap;
    }

    .brand-cn {
      font-size: 0.78rem;
      color: var(--gold-300);
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.9rem;
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      transition: color 180ms ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 6px;
      height: 2px;
      transform: scaleX(0);
      transform-origin: right;
      background: var(--ember-500);
      transition: transform 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--white);
      outline: none;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--white);
      cursor: pointer;
    }

    .mobile-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-toggle.is-open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .mobile-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.is-open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 12px 20px;
      border: 1px solid transparent;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      outline: none;
    }

    .btn-primary {
      color: #120806;
      background: linear-gradient(135deg, var(--gold-300), var(--ember-500));
      box-shadow: 0 16px 34px rgba(216, 106, 40, 0.24);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      box-shadow: 0 18px 46px rgba(216, 106, 40, 0.34);
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.18);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      border-color: var(--line-strong);
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-dark {
      color: var(--white);
      background: rgba(5, 5, 5, 0.72);
      border-color: rgba(255, 255, 255, 0.16);
    }

    .btn-small {
      min-height: 40px;
      padding: 10px 14px;
      font-size: 0.92rem;
    }

    .language-toggle {
      min-height: 40px;
      padding: 9px 34px 9px 12px;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 900;
      line-height: 1.2;
      white-space: nowrap;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .language-toggle option {
      color: #111;
      background: #fff;
    }

    .language-toggle:hover,
    .language-toggle:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(240, 200, 115, 0.36);
      background: rgba(255, 255, 255, 0.1);
      outline: none;
    }

    body.is-rtl {
      direction: rtl;
    }

    body.is-rtl .brand,
    body.is-rtl .nav-actions {
      direction: ltr;
    }

    body.is-rtl input,
    body.is-rtl select,
    body.is-rtl textarea {
      direction: rtl;
      text-align: right;
    }

    body.is-rtl input[type="email"] {
      direction: ltr;
      text-align: left;
    }

    body.is-rtl .hero-content,
    body.is-rtl .section-head,
    body.is-rtl .about-copy,
    body.is-rtl .contact-card,
    body.is-rtl .contact-form {
      direction: rtl;
      text-align: right;
    }

    body.is-rtl .eyebrow::before {
      background: linear-gradient(270deg, var(--gold-300), rgba(216, 106, 40, 0));
    }

    body.is-rtl .contact-grid {
      direction: rtl;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.24) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.84) 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px),
        linear-gradient(45deg, rgba(240, 200, 115, 0.08), transparent 30%),
        linear-gradient(180deg, #16110f 0%, #050505 72%);
      background-size: 44px 44px, 100% 100%, 100% 100%;
      opacity: 0.62;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 44%;
      z-index: -2;
      background:
        linear-gradient(0deg, rgba(216, 106, 40, 0.42), rgba(216, 106, 40, 0.06) 48%, transparent),
        repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 34px);
      mix-blend-mode: screen;
      opacity: 0.9;
    }

    .hero-scene {
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.9;
      overflow: hidden;
    }

    .hero-scene .belt {
      position: absolute;
      right: -8%;
      bottom: 8%;
      width: 68%;
      height: 30%;
      transform: skewY(-8deg);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 34px),
        linear-gradient(90deg, #15110f, #2b1a12 50%, #0b0b0c);
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: 0 -30px 110px rgba(216, 106, 40, 0.22);
    }

    .coal-bed {
      position: absolute;
      right: 3%;
      bottom: 8%;
      width: 54%;
      height: 26%;
      filter: drop-shadow(0 20px 54px rgba(0, 0, 0, 0.44));
    }

    .coal {
      position: absolute;
      display: block;
      background:
        linear-gradient(135deg, #27231f, #080808 70%),
        #111;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset -10px -14px 28px rgba(0, 0, 0, 0.5),
        inset 5px 5px 13px rgba(255, 255, 255, 0.05);
      transform: rotate(var(--rot, 0deg));
      animation: coalFloat 7s ease-in-out infinite;
      animation-delay: var(--delay, 0s);
    }

    .coal::after {
      content: "";
      position: absolute;
      inset: 8% 16% auto auto;
      width: 28%;
      height: 20%;
      background: rgba(216, 106, 40, 0.76);
      border-radius: 50%;
      filter: blur(5px);
      opacity: 0.55;
    }

    .coal-1 { left: 7%; top: 28%; width: 28%; height: 36%; --rot: -16deg; --delay: -1s; border-radius: 34% 24% 32% 22%; }
    .coal-2 { left: 26%; top: 10%; width: 22%; height: 34%; --rot: 20deg; --delay: -2s; border-radius: 28% 40% 24% 36%; }
    .coal-3 { left: 42%; top: 38%; width: 30%; height: 38%; --rot: 8deg; --delay: -3s; border-radius: 24% 30% 40% 26%; }
    .coal-4 { left: 63%; top: 18%; width: 26%; height: 34%; --rot: -10deg; --delay: -4s; border-radius: 38% 26% 32% 22%; }
    .coal-5 { left: 76%; top: 48%; width: 20%; height: 28%; --rot: 22deg; --delay: -5s; border-radius: 24% 42% 30% 36%; }

    .smoke-line {
      position: absolute;
      right: 9%;
      top: 14%;
      width: 36%;
      height: 46%;
      border-left: 1px solid rgba(255, 255, 255, 0.12);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      transform: skewX(-18deg);
      opacity: 0.5;
      animation: smokeShift 10s ease-in-out infinite alternate;
    }

    .smoke-line:nth-child(2) {
      right: 19%;
      top: 20%;
      width: 28%;
      opacity: 0.32;
      animation-delay: -3s;
    }

    .hero-content {
      width: min(760px, 100%);
      padding: 148px 0 92px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--gold-300);
      font-weight: 800;
      font-size: 0.9rem;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-300), rgba(216, 106, 40, 0));
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 720px;
      margin-bottom: 22px;
      color: var(--white);
      font-size: 4.7rem;
      line-height: 0.98;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 660px;
      margin-bottom: 32px;
      color: rgba(244, 239, 232, 0.82);
      font-size: 1.22rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 42px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      width: min(700px, 100%);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
    }

    .trust-item {
      min-height: 104px;
      padding: 18px;
      background: rgba(8, 8, 8, 0.7);
    }

    .trust-value {
      display: block;
      color: var(--white);
      font-size: 1.46rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .trust-label {
      display: block;
      margin-top: 7px;
      color: rgba(244, 239, 232, 0.68);
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .supplier-snapshot {
      padding: 72px 0;
      background:
        linear-gradient(180deg, rgba(240, 200, 115, 0.05), rgba(255, 255, 255, 0)),
        var(--charcoal-950);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .snapshot-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .snapshot-card {
      min-height: 178px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius);
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.035);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    }

    .snapshot-label {
      display: block;
      margin-bottom: 16px;
      color: var(--gold-300);
      font-size: 0.82rem;
      font-weight: 900;
    }

    .snapshot-card strong {
      display: block;
      margin-bottom: 10px;
      color: var(--white);
      font-size: 1.12rem;
      line-height: 1.28;
    }

    .snapshot-card p {
      margin: 0;
      color: rgba(244, 239, 232, 0.66);
      font-size: 0.94rem;
    }

    .language-strip {
      padding: 0 0 72px;
      background: var(--charcoal-950);
    }

    .language-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
      gap: 28px;
      align-items: center;
      padding: 26px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(216, 106, 40, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.035);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    }

    .language-panel h3 {
      margin-bottom: 8px;
      color: var(--white);
      font-size: 1.28rem;
      line-height: 1.25;
    }

    .language-panel p {
      margin: 0;
      color: rgba(244, 239, 232, 0.68);
      font-size: 0.96rem;
    }

    .language-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .language-pills li {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 12px;
      color: rgba(244, 239, 232, 0.88);
      font-weight: 800;
      font-size: 0.86rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      background: rgba(5, 5, 5, 0.36);
    }

    main {
      position: relative;
      z-index: 1;
    }

    section {
      padding: 96px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-kicker {
      margin-bottom: 12px;
      color: var(--gold-300);
      font-weight: 800;
      font-size: 0.92rem;
    }

    h2 {
      margin-bottom: 0;
      color: var(--white);
      font-size: 2.65rem;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section-text {
      margin: 0;
      color: rgba(244, 239, 232, 0.72);
      font-size: 1.02rem;
    }

    .about {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        var(--charcoal-900);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
      gap: 48px;
      align-items: stretch;
    }

    .about-copy {
      display: grid;
      align-content: center;
      gap: 22px;
    }

    .about-copy p {
      margin-bottom: 0;
      color: rgba(244, 239, 232, 0.76);
      font-size: 1.06rem;
    }

    .about-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
    }

    .about-list li {
      min-height: 68px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.035);
      color: rgba(244, 239, 232, 0.86);
      font-weight: 700;
    }

    .check-mark {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      color: var(--gold-300);
      border: 1px solid rgba(240, 200, 115, 0.32);
      border-radius: 5px;
      background: rgba(216, 106, 40, 0.08);
    }

    .about-panel {
      position: relative;
      min-height: 440px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
        #111;
      box-shadow: var(--shadow);
    }

    .about-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(240, 200, 115, 0.12), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 28px);
      opacity: 0.72;
    }

    .factory-visual {
      position: absolute;
      inset: 0;
    }

    .factory-visual .stack {
      position: absolute;
      bottom: 23%;
      width: 11%;
      height: 42%;
      background: linear-gradient(90deg, #24211f, #0d0d0e);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .factory-visual .stack:nth-child(1) { left: 14%; height: 54%; }
    .factory-visual .stack:nth-child(2) { left: 28%; height: 42%; }
    .factory-visual .stack:nth-child(3) { right: 17%; height: 49%; }

    .factory-visual .floor {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 34%;
      background:
        linear-gradient(0deg, rgba(216, 106, 40, 0.24), transparent 82%),
        repeating-linear-gradient(104deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 30px),
        #0b0b0c;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .factory-visual .pallet {
      position: absolute;
      right: 18%;
      bottom: 22%;
      width: 30%;
      height: 18%;
      background:
        repeating-linear-gradient(0deg, #1e1712 0 10px, #332018 10px 13px),
        #1a1715;
      border: 1px solid rgba(240, 200, 115, 0.18);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    }

    .panel-badge {
      position: absolute;
      left: 24px;
      bottom: 24px;
      right: 24px;
      padding: 20px;
      border: 1px solid rgba(240, 200, 115, 0.24);
      border-radius: var(--radius);
      background: rgba(5, 5, 5, 0.72);
      backdrop-filter: blur(14px);
    }

    .panel-badge strong {
      display: block;
      color: var(--white);
      font-size: 1.12rem;
      line-height: 1.35;
    }

    .panel-badge span {
      display: block;
      margin-top: 6px;
      color: rgba(244, 239, 232, 0.68);
      font-size: 0.94rem;
    }

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

    .product-card {
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.045);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
      transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      border-color: rgba(240, 200, 115, 0.34);
      background: rgba(255, 255, 255, 0.065);
    }

    .product-media {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      width: 100%;
      padding: 0;
      border: 0;
      background:
        linear-gradient(145deg, rgba(216, 106, 40, 0.12), transparent 44%),
        linear-gradient(180deg, #f7f3ea 0%, #e8e0d3 78%, #0b0b0c 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      cursor: zoom-in;
    }

    .product-media:focus-visible {
      outline: 3px solid rgba(240, 200, 115, 0.76);
      outline-offset: -3px;
    }

    .product-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38)),
        radial-gradient(circle at 18% 12%, rgba(240, 200, 115, 0.18), transparent 30%);
      opacity: 0.82;
      pointer-events: none;
      z-index: 1;
    }

    .product-media::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 28%;
      background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.78));
      z-index: 1;
    }

    .product-media img {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      padding: 16px;
      object-fit: contain;
      z-index: 0;
    }

    .product-body {
      display: grid;
      align-content: start;
      gap: 15px;
      padding: 22px;
    }

    .product-body h3 {
      margin: 0;
      color: var(--white);
      font-size: 1.22rem;
      line-height: 1.2;
    }

    .product-meta {
      width: fit-content;
      padding: 6px 9px;
      color: var(--gold);
      font-size: 0.76rem;
      line-height: 1.2;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: 1px solid rgba(240, 200, 115, 0.24);
      border-radius: 5px;
      background: rgba(240, 200, 115, 0.08);
    }

    .product-body p {
      margin: 0;
      color: rgba(244, 239, 232, 0.7);
      font-size: 0.95rem;
    }

    .product-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .tags li {
      padding: 6px 9px;
      color: rgba(244, 239, 232, 0.84);
      font-size: 0.78rem;
      line-height: 1.2;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.04);
    }

    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      place-items: center;
      padding: 24px;
      color: var(--white);
    }

    .product-modal.is-open {
      display: grid;
    }

    body.modal-open {
      overflow: hidden;
    }

    .product-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.78);
      backdrop-filter: blur(12px);
    }

    .product-dialog {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.8fr);
      gap: 30px;
      width: min(1120px, 100%);
      max-height: min(90vh, 860px);
      overflow: auto;
      padding: 24px;
      border: 1px solid rgba(240, 200, 115, 0.22);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(216, 106, 40, 0.12), transparent 42%),
        rgba(9, 8, 7, 0.98);
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 1.35rem;
      line-height: 1;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.54);
      cursor: pointer;
    }

    body.is-rtl .modal-close {
      right: auto;
      left: 14px;
    }

    .modal-close:focus-visible,
    .gallery-thumb:focus-visible {
      outline: 3px solid rgba(240, 200, 115, 0.78);
      outline-offset: 2px;
    }

    .product-gallery {
      display: grid;
      align-content: start;
      gap: 14px;
    }

    .gallery-stage {
      display: grid;
      place-items: center;
      min-height: 360px;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 24% 14%, rgba(240, 200, 115, 0.2), transparent 30%),
        #f5f1ea;
    }

    .gallery-stage img {
      display: block;
      width: 100%;
      height: 100%;
      padding: 22px;
      object-fit: contain;
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 8px;
      max-height: 158px;
      overflow: auto;
      padding: 2px;
    }

    .gallery-thumb {
      aspect-ratio: 1;
      padding: 5px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.92);
      cursor: pointer;
    }

    .gallery-thumb.is-active {
      border-color: rgba(240, 200, 115, 0.9);
      box-shadow: 0 0 0 2px rgba(240, 200, 115, 0.2);
    }

    .gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .product-detail-copy {
      display: grid;
      align-content: start;
      gap: 16px;
      padding: 12px 6px 6px;
    }

    .product-detail-copy h3 {
      margin: 0;
      color: var(--white);
      font-size: clamp(1.75rem, 3vw, 2.8rem);
      line-height: 1.05;
    }

    .detail-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .detail-list li {
      padding-top: 10px;
      color: rgba(244, 239, 232, 0.7);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detail-list strong {
      display: block;
      margin-bottom: 4px;
      color: var(--white);
    }

    .modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .customization {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        var(--charcoal-950);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .custom-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
      gap: 44px;
      align-items: stretch;
    }

    .custom-list {
      display: grid;
      gap: 14px;
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
    }

    .custom-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
    }

    .custom-list strong {
      color: var(--white);
      line-height: 1.25;
    }

    .custom-list span:last-child {
      color: rgba(244, 239, 232, 0.68);
      font-size: 0.94rem;
    }

    .packing-board {
      position: relative;
      min-height: 470px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(216, 106, 40, 0.2), transparent 42%),
        linear-gradient(180deg, #1a1714, #080808);
      box-shadow: var(--shadow);
    }

    .packing-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px);
      opacity: 0.7;
    }

    .package-mock {
      position: absolute;
      width: 38%;
      min-width: 170px;
      aspect-ratio: 0.78;
      padding: 22px;
      border: 1px solid rgba(240, 200, 115, 0.3);
      border-radius: 7px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        #15110f;
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
    }

    .package-mock.primary {
      left: 14%;
      top: 16%;
      transform: rotate(-5deg);
    }

    .package-mock.secondary {
      right: 12%;
      bottom: 13%;
      transform: rotate(6deg);
    }

    .package-mock strong {
      display: block;
      color: var(--white);
      font-size: 1.1rem;
      line-height: 1.2;
    }

    .package-mock span {
      display: block;
      margin-top: 10px;
      color: var(--gold-300);
      font-weight: 900;
      font-size: 0.82rem;
    }

    .package-lines {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 24px;
      display: grid;
      gap: 8px;
    }

    .package-lines i {
      display: block;
      height: 8px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.14);
    }

    .advantages {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        var(--charcoal-900);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .advantage-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .advantage-item {
      position: relative;
      min-height: 196px;
      padding: 22px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius);
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.035);
    }

    .advantage-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ember-500), var(--gold-300));
    }

    .advantage-number {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      margin-bottom: 24px;
      color: #170907;
      font-weight: 900;
      border-radius: 6px;
      background: var(--gold-300);
    }

    .advantage-item h3 {
      margin-bottom: 10px;
      color: var(--white);
      font-size: 1.06rem;
      line-height: 1.28;
    }

    .advantage-item p {
      margin: 0;
      color: rgba(244, 239, 232, 0.66);
      font-size: 0.91rem;
    }

    .markets-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
      gap: 46px;
      align-items: center;
    }

    .market-map {
      position: relative;
      min-height: 420px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(216, 106, 40, 0.14), transparent 32%),
        linear-gradient(180deg, #151515, #090909);
      box-shadow: var(--shadow);
    }

    .market-map::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 44px);
      opacity: 0.8;
    }

    .route {
      position: absolute;
      left: 10%;
      right: 10%;
      top: 48%;
      height: 2px;
      background: linear-gradient(90deg, rgba(216, 106, 40, 0), var(--ember-500), var(--gold-300));
      transform: rotate(-12deg);
      box-shadow: 0 0 18px rgba(216, 106, 40, 0.44);
    }

    .route::after {
      content: "";
      position: absolute;
      right: -7px;
      top: -5px;
      width: 12px;
      height: 12px;
      border-top: 2px solid var(--gold-300);
      border-right: 2px solid var(--gold-300);
      transform: rotate(45deg);
    }

    .market-point {
      position: absolute;
      min-width: 118px;
      padding: 9px 12px;
      color: var(--white);
      font-weight: 800;
      font-size: 0.88rem;
      border: 1px solid rgba(240, 200, 115, 0.34);
      border-radius: 6px;
      background: rgba(5, 5, 5, 0.76);
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .market-point::before {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-right: 8px;
      border-radius: 50%;
      background: var(--ember-500);
      box-shadow: 0 0 14px var(--ember-500);
    }

    .market-point.saudi { right: 14%; top: 28%; }
    .market-point.uae { right: 24%; bottom: 30%; }
    .market-point.qatar { right: 8%; bottom: 18%; }
    .market-point.kuwait { right: 34%; top: 45%; }
    .market-point.me { left: 12%; bottom: 24%; }

    .market-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .market-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 64px;
      padding: 15px 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
      color: var(--white);
      font-weight: 800;
    }

    .market-list span {
      color: rgba(244, 239, 232, 0.56);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .process {
      background:
        linear-gradient(180deg, rgba(216, 106, 40, 0.055), rgba(255, 255, 255, 0)),
        var(--charcoal-950);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      counter-reset: step;
    }

    .process-card {
      position: relative;
      min-height: 210px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
      overflow: hidden;
    }

    .process-card::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 28px;
      color: #180907;
      font-weight: 900;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--gold-300), var(--ember-500));
    }

    .process-card h3 {
      margin-bottom: 10px;
      color: var(--white);
      font-size: 1.08rem;
      line-height: 1.28;
    }

    .process-card p {
      margin: 0;
      color: rgba(244, 239, 232, 0.66);
      font-size: 0.94rem;
    }

    .faq {
      background: var(--charcoal-900);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .faq-item {
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.04);
    }

    .faq-item h3 {
      margin-bottom: 10px;
      color: var(--white);
      font-size: 1.05rem;
      line-height: 1.35;
    }

    .faq-item p {
      margin: 0;
      color: rgba(244, 239, 232, 0.68);
      font-size: 0.94rem;
    }

    .contact {
      position: relative;
      background:
        linear-gradient(180deg, rgba(216, 106, 40, 0.06), rgba(255, 255, 255, 0)),
        var(--charcoal-900);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
      gap: 44px;
      align-items: start;
      direction: ltr;
    }

    .contact-card,
    .contact-form {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.045);
      box-shadow: var(--shadow);
    }

    .contact-card {
      padding: 30px;
    }

    .contact-card h2 {
      margin-bottom: 18px;
    }

    .contact-card p {
      color: rgba(244, 239, 232, 0.72);
    }

    .method-heading {
      margin: 28px 0 12px;
      color: var(--gold-300);
      font-weight: 800;
    }

    .contact-methods {
      display: grid;
      gap: 14px;
      margin: 0;
    }

    .contact-method {
      position: relative;
      display: grid;
      gap: 6px;
      min-height: 108px;
      padding: 18px 18px 18px 54px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      background: rgba(5, 5, 5, 0.28);
      cursor: pointer;
      transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    body.is-rtl .contact-method {
      padding: 18px 54px 18px 18px;
    }

    .contact-method:hover,
    .contact-method.is-selected {
      border-color: rgba(240, 200, 115, 0.38);
      background:
        linear-gradient(145deg, rgba(216, 106, 40, 0.16), transparent 62%),
        rgba(5, 5, 5, 0.36);
    }

    .contact-method.is-selected {
      transform: translateY(-2px);
    }

    .contact-method input {
      position: absolute;
      left: 18px;
      top: 22px;
      width: 18px;
      height: 18px;
      accent-color: var(--gold-300);
    }

    body.is-rtl .contact-method input {
      left: auto;
      right: 18px;
    }

    .method-title {
      color: var(--gold-300);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .method-value {
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .method-hint {
      color: rgba(244, 239, 232, 0.56);
      font-size: 0.86rem;
      line-height: 1.5;
    }

    .method-note {
      margin: 18px 0 0;
      color: rgba(244, 239, 232, 0.58);
      font-size: 0.9rem;
    }

    .contact-form {
      padding: 28px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

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

    label {
      color: rgba(244, 239, 232, 0.84);
      font-size: 0.9rem;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 48px;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 6px;
      background: rgba(5, 5, 5, 0.54);
      padding: 12px 14px;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    select {
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-300) 50%),
        linear-gradient(135deg, var(--gold-300) 50%, transparent 50%);
      background-position:
        calc(100% - 18px) 21px,
        calc(100% - 12px) 21px;
      background-size: 6px 6px;
      background-repeat: no-repeat;
    }

    body.is-rtl select {
      padding-right: 14px;
      padding-left: 42px;
      background-position:
        18px 21px,
        24px 21px;
    }

    textarea {
      min-height: 136px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(240, 200, 115, 0.56);
      background: rgba(5, 5, 5, 0.68);
      box-shadow: 0 0 0 4px rgba(216, 106, 40, 0.12);
    }

    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 18px;
      flex-wrap: wrap;
    }

    .form-status {
      min-height: 24px;
      margin: 0;
      color: var(--gold-300);
      font-size: 0.92rem;
      font-weight: 800;
    }

    .site-footer {
      padding: 34px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: #050505;
    }

    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: rgba(244, 239, 232, 0.64);
      font-size: 0.92rem;
    }

    .footer-brand {
      color: var(--white);
      font-weight: 900;
    }

    .floating-whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 45;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 13px 18px;
      color: #120806;
      font-weight: 900;
      border-radius: 7px;
      background: linear-gradient(135deg, var(--gold-300), var(--ember-500));
      box-shadow: 0 18px 44px rgba(216, 106, 40, 0.34);
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
    }

    .floating-whatsapp.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .floating-whatsapp:hover,
    .floating-whatsapp:focus-visible {
      transform: translateY(-3px);
      outline: none;
      box-shadow: 0 22px 54px rgba(216, 106, 40, 0.42);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 650ms ease, transform 650ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes coalFloat {
      0%,
      100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
      }
      50% {
        transform: translateY(-8px) rotate(var(--rot, 0deg));
      }
    }

    @keyframes smokeShift {
      from {
        transform: translate3d(0, 0, 0) skewX(-18deg);
        opacity: 0.32;
      }
      to {
        transform: translate3d(-28px, -18px, 0) skewX(-18deg);
        opacity: 0.56;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 1100px) {
      .snapshot-grid,
      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .advantage-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hero-scene .belt,
      .coal-bed {
        width: 76%;
      }
    }

    @media (max-width: 900px) {
      .container {
        width: min(var(--content), calc(100% - 28px));
      }

      .nav {
        min-height: 68px;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        background: rgba(5, 5, 5, 0.96);
        box-shadow: var(--shadow);
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a {
        padding: 9px 12px;
      }

      .nav-actions .btn {
        display: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 126px 0 70px;
      }

      h1 {
        font-size: 3.3rem;
      }

      h2 {
        font-size: 2.15rem;
      }

      .hero-lead {
        font-size: 1.08rem;
      }

      .trust-row {
        grid-template-columns: 1fr;
      }

      .trust-item {
        min-height: 86px;
      }

      .section-head,
      .about-grid,
      .language-panel,
      .custom-grid,
      .markets-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .about-panel {
        min-height: 360px;
      }

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

      .market-map {
        min-height: 360px;
      }

      .packing-board {
        min-height: 390px;
      }

      .language-pills {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 15px;
      }

      section {
        padding: 72px 0;
      }

      .brand-name {
        font-size: 0.98rem;
      }

      .brand-cn {
        font-size: 0.72rem;
      }

      .brand-logo {
        width: 44px;
        height: 44px;
      }

      h1 {
        font-size: 2.45rem;
        line-height: 1.05;
      }

      h2 {
        font-size: 1.84rem;
      }

      .hero-actions,
      .form-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
        white-space: normal;
      }

      .about-list,
      .snapshot-grid,
      .products-grid,
      .advantage-grid,
      .process-grid,
      .faq-grid,
      .contact-methods,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .product-body,
      .contact-form,
      .contact-card {
        padding: 22px;
      }

      .product-dialog {
        grid-template-columns: 1fr;
        max-height: calc(100dvh - 24px);
        padding: 16px;
      }

      .gallery-stage {
        min-height: 260px;
      }

      .gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .modal-actions,
      .product-actions {
        flex-direction: column;
      }

      .hero-scene {
        opacity: 0.52;
      }

      .coal-bed {
        right: -18%;
        bottom: 4%;
        width: 110%;
      }

      .hero-scene .belt {
        right: -40%;
        width: 120%;
      }

      .market-point {
        min-width: 104px;
        font-size: 0.78rem;
      }

      .market-point.saudi { right: 8%; top: 22%; }
      .market-point.uae { right: 14%; bottom: 32%; }
      .market-point.qatar { right: 4%; bottom: 16%; }
      .market-point.kuwait { left: 8%; top: 44%; right: auto; }
      .market-point.me { left: 9%; bottom: 22%; }

      .footer-content {
        align-items: flex-start;
        flex-direction: column;
      }

      .floating-whatsapp {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }
    }
