/* Jujin MIC-inspired theme — EyouCMS */
:root {
  --jj-blue: #1470cc;
  --jj-blue-dark: #0d5aa8;
  --jj-red: #e64545;
  --jj-text: #222;
  --jj-muted: #555;
  --jj-line: #dae0e6;
  --jj-bg: #f5f7fa;
  --jj-max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--jj-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--jj-red); }
img { max-width: 100%; height: auto; vertical-align: middle; }

.jj-wrap {
  width: 100%;
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header now uses MIC shop-sign + sr-nav (see shop-sign.css + header.htm) */

/* —— Company bar（内页可复用） —— */
.jj-company {
  background: #fff;
  border-bottom: 1px solid var(--jj-line);
}
.jj-company__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.jj-company__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.jj-company__meta {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--jj-muted);
}
.jj-company__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.jj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 17px;
  font-size: 13px;
  border: 1px solid var(--jj-text);
  background: #fff;
  color: var(--jj-text) !important;
}
.jj-btn:hover { background: #f4f4f4; color: var(--jj-text) !important; }
.jj-btn--main {
  border-color: var(--jj-red);
  background: var(--jj-red);
  color: #fff !important;
}
.jj-btn--main:hover { background: #cc2929; color: #fff !important; }

/* —— 首页 Banner —— */
.jj-hero {
  position: relative;
  width: 100%;
  height: min(380px, calc(100vw * 380 / 1920));
  min-height: 160px;
  background: #0a2a5c;
  overflow: hidden;
}
.jj-hero-slider.owl-carousel,
.jj-hero-slider .owl-stage-outer,
.jj-hero-slider .owl-stage,
.jj-hero-slider .owl-item,
.jj-hero-banner {
  height: 100%;
}
.jj-hero-slider.owl-carousel {
  display: block;
  width: 100%;
}
.jj-hero-slider.owl-carousel:not(.owl-loaded) .jj-hero-banner:not(:first-child) {
  display: none;
}
.jj-hero-banner img,
.jj-hero-slider .owl-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.jj-hero-slider .owl-nav .owl-prev,
.jj-hero-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}
.jj-hero-slider .owl-nav .owl-prev { left: 16px; }
.jj-hero-slider .owl-nav .owl-next { right: 16px; }
.jj-hero-slider .owl-nav i { font-size: 22px; color: #fff; }
.jj-hero-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  text-align: center;
}
.jj-hero-slider .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 4px;
}
.jj-hero-slider .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.jj-hero-slider .owl-dots .owl-dot.active span {
  width: 16px;
  border-radius: 8px;
  background: #fff;
}
/* 完整 VR 弹层 */
.jj-vr-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background: #000;
}
.jj-vr-modal.is-open { display: block; }
.jj-vr-modal:not(.is-open) { display: none !important; }
.jj-vr-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.jj-vr-modal__close:hover { background: rgba(255,255,255,.35); }
.jj-vr-modal__viewer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jj-vr-modal__viewer .pnlm-container {
  width: 100% !important;
  height: 100% !important;
}

/* —— Section —— */
.jj-section { padding: 48px 0; background: var(--jj-bg); }
.jj-section--white { background: #fff; }
.jj-section__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--jj-text);
}
.jj-section__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--jj-text);
  margin: 12px auto 0;
}
/* 首页语言条：对齐 MIC .multilingual-site（灰底区内、精选标题上方、通栏） */
.jj-home .shop-sign__lang { display: none; }
.jj-section--feat { padding-top: 15px; }
.multilingual-site { margin: 0 0 20px; }
.multilingual-site .lang-content {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-content: center;
  padding: 0 0 10px;
  overflow: auto;
  box-shadow: 0 2px 2px rgba(0,0,0,.1);
}
.multilingual-site .lang-item {
  text-align: center;
  padding: 15px 5px 0;
  box-sizing: border-box;
}
.multilingual-site .lang-item a {
  display: inline-block;
  transition: transform .15s;
  color: inherit !important;
  text-decoration: none !important;
}
.multilingual-site .lang-item a:hover { transform: translateY(-5px); }
.multilingual-site .lang-item a:hover .country-name,
.multilingual-site .lang-item a.is-active .country-name {
  color: #222;
  font-weight: 700;
}
.multilingual-site .country-flag {
  width: 48px;
  height: 48px;
  border: 1px solid #e6ecf2;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
}
.multilingual-site .country-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.multilingual-site .country-name {
  font-size: 12px;
  padding-top: 5px;
  color: #888;
  white-space: nowrap;
}

/* MIC Featured Products：灰底区块 + 标题浅蓝底高亮 */
.jj-section--feat {
  background: #F5F7FA;
}
.jj-section__title--feat {
  font-size: 30px;
  margin-bottom: 32px;
}
.jj-section__title--feat::after { display: none; }
.jj-section__title--feat span {
  display: inline-block;
  padding: 6px 18px;
  background: #D1E9FF;
  color: #222;
  line-height: 1.3;
}

/* Recommend for you — MIC 3×3 蓝框卡片 */
.jj-section--foryou {
  padding-top: 24px;
  padding-bottom: 48px;
}
.jj-foryou__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.jj-foryou__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1667b4;
  line-height: 1.3;
}
.jj-foryou__arrows {
  color: #1667b4;
  font-size: 22px;
  letter-spacing: -4px;
  font-weight: 700;
  line-height: 1;
}
.jj-foryou__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.jj-foryou-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #1667b4;
  background: #fff;
  text-decoration: none !important;
  overflow: hidden;
  min-height: 0;
  transition: box-shadow .2s;
}
.jj-foryou-card:hover {
  box-shadow: 0 4px 14px rgba(22,103,180,.18);
}
.jj-foryou-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 12px;
  background: #fff;
}
.jj-foryou-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.jj-foryou-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
  padding: 10px 12px;
  background: #1667b4;
  box-sizing: border-box;
}
.jj-foryou-card__name {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jj-foryou-card__cta {
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}
.jj-foryou-card:hover .jj-foryou-card__cta {
  background: rgba(255,255,255,.12);
}

/* 类目区：Banner + 产品网格（对齐 MIC srBanner + prodlist） */
.jj-section--cat {
  padding-top: 8px;
  padding-bottom: 36px;
  background: #fff;
}
.jj-promo {
  margin-bottom: 20px;
}
.jj-promo__item {
  display: block;
  line-height: 0;
}
.jj-promo__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.jj-products--cat {
  gap: 20px;
}
.jj-products--cat .jj-feat-card {
  border: 1px solid transparent;
}
.jj-products--cat .jj-feat-card:hover {
  border-color: transparent;
}

/* Featured Products — MIC layout: 1 large + 3×2 */
.jj-feat {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: stretch;
}
.jj-feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.jj-feat-card__wrap {
  position: relative;
  min-height: 0;
}
.jj-feat-card {
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px 13px 12px;
  height: 100%;
  transition: box-shadow .25s ease;
}
.jj-feat-card:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,.12), 0 6px 10px rgba(0,0,0,.06), 0 9px 16px rgba(0,0,0,.03);
}
.jj-feat-card--main {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
}
.jj-feat-card__img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}
.jj-feat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.jj-feat-card__play {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 28px;
  height: 22px;
  background: url("../images/jujin/video-play.png") center / contain no-repeat;
  pointer-events: none;
  opacity: .9;
}
.jj-feat-card--main .jj-feat-card__play {
  width: 36px;
  height: 28px;
  left: 10px;
  bottom: 10px;
}
.jj-feat-card__name {
  margin: 10px 0 0;
  height: 42px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.jj-feat-card--main .jj-feat-card__name {
  height: 54px;
  font-size: 18px;
  line-height: 27px;
}
.jj-feat-card__name a { color: #555; }
.jj-feat-card__name a:hover { color: var(--jj-red); }
.jj-feat-card__meta { margin-top: 18px; color: #222; }
.jj-feat-card__info { margin-top: 2px; }
.jj-feat-card__price {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #222;
}
.jj-feat-card--main .jj-feat-card__price {
  font-size: 24px;
  line-height: 30px;
}
.jj-feat-card__unit,
.jj-feat-card__moq span {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}
.jj-feat-card__moq {
  margin-top: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #222;
}
.jj-feat-card--main .jj-feat-card__moq { margin-top: 8px; }
.jj-feat-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px 22px;
  border: 1px solid #888;
  border-radius: 28px;
  background: #fff;
  color: #222 !important;
  font-size: 14px;
  line-height: 1;
  align-self: flex-start;
}
.jj-feat-card__cta:hover {
  border-color: #222;
  color: #222 !important;
  background: #fff;
}

/* keep old product grid for list pages if reused */
.jj-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.jj-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: box-shadow .2s, border-color .2s;
}
.jj-card:hover {
  border-color: var(--jj-line);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.jj-card__img {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}
.jj-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.jj-card:hover .jj-card__img img { transform: scale(1.04); }
.jj-card__body { padding: 14px; }
.jj-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.jj-card__title a { color: var(--jj-text); }
.jj-card__title a:hover { color: var(--jj-red); }
.jj-card__action { margin-top: 10px; }
.jj-card__action .jj-btn { width: 100%; height: 32px; border-radius: 4px; }

.jj-more {
  text-align: center;
  margin-top: 28px;
}

/* Company Profile — MIC: video + text, then dark gallery block */
.jj-section--profile {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #f5f6f8;
}
.jj-profile {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 2px;
  min-height: 360px;
}
.jj-profile__media {
  background: #111;
  min-height: 320px;
  position: relative;
}
.jj-profile__player {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #111;
}
.jj-profile__video-el {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: #111;
}
.jj-profile__playbtn {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
.jj-profile__player.is-playing .jj-profile__playbtn { display: none; }
.jj-profile__play,
.jj-profile-gallery__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.92) center / 28px 28px no-repeat;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  pointer-events: none;
}
.jj-profile__play,
.jj-profile-gallery__icon--video {
  background-image: url("../images/jujin/video-play.png");
  background-size: 22px 22px;
}
.jj-profile-gallery__icon--360 {
  background-image: url("../images/jujin/mic/bg-icon-360-01.png");
  background-size: 36px 36px;
  background-color: rgba(255,255,255,.88);
}
.jj-profile-gallery__icon--image { display: none; }
.jj-profile__panel {
  background: #f3f4f6;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.jj-profile__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
}
.jj-profile__sub {
  margin: 0 0 16px;
  font-size: 14px;
  color: #888;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  width: fit-content;
  min-width: 72px;
}
.jj-profile__scroll,
.jj-profile-dark__scroll {
  overflow-y: auto;
  flex: 1;
  max-height: 260px;
  padding-right: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.jj-profile__scroll p,
.jj-profile-dark__scroll p {
  margin: 0 0 12px;
}
.jj-profile__scroll::-webkit-scrollbar,
.jj-profile-dark__scroll::-webkit-scrollbar { width: 4px; }
.jj-profile__scroll::-webkit-scrollbar-thumb,
.jj-profile-dark__scroll::-webkit-scrollbar-thumb {
  background: #c5c8ce;
  border-radius: 2px;
}

.jj-section--profile-dark {
  position: relative;
  padding: 48px 0 56px;
  background:
    linear-gradient(180deg, rgba(18,24,34,.88), rgba(18,24,34,.92)),
    url("/uploads/jujin/62-Changzhou-Jujin-Automation-Equipment-Co-Ltd-.webp") center / cover no-repeat;
  color: #fff;
}
.jj-profile-dark__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: 28px;
  letter-spacing: .06em;
  font-weight: 700;
  text-transform: uppercase;
}
.jj-profile-dark__scroll {
  max-width: 920px;
  margin: 0 auto 28px;
  max-height: 180px;
  text-align: center;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.8;
}
.jj-profile-dark__scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); }
.jj-profile-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.jj-profile-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 10;
}
.jj-profile-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.jj-profile-gallery__item:hover img { transform: scale(1.04); }

.jj-media-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.82);
  padding: 24px;
}
.jj-media-modal.is-open { display: flex; }
.jj-media-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.jj-media-modal__body {
  max-width: min(960px, 92vw);
  max-height: 86vh;
}
.jj-media-modal__video,
.jj-media-modal__img {
  max-width: 100%;
  max-height: 86vh;
  display: block;
  margin: 0 auto;
  background: #000;
}

/* Authentication + Solutions (MIC) */
.jj-section--authsol { padding: 36px 0 28px; }
.jj-authsol {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px 48px;
  align-items: start;
}
.jj-auth__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}
.jj-auth__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jj-auth__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}
.jj-auth__item::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%231470cc'/%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.jj-auth__label {
  flex: 0 0 auto;
  color: #666;
  white-space: nowrap;
}
.jj-auth__label::after { content: ":"; margin-right: 4px; }
.jj-auth__val { color: #222; }
.jj-auth__val--links a {
  color: #1470cc;
  text-decoration: none;
}
.jj-auth__val--links a:hover { color: var(--jj-red); text-decoration: underline; }
.jj-auth__val--links a:not(:last-child)::after {
  content: ", ";
  color: #666;
  text-decoration: none;
}
.jj-solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.jj-solutions__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  padding: 18px 12px;
  border: 1px solid #e6ebf0;
  border-radius: 6px;
  background: #fafbfc;
  color: #222 !important;
  text-decoration: none !important;
  transition: border-color .15s, box-shadow .15s;
}
.jj-solutions__card:hover {
  border-color: #1470cc;
  box-shadow: 0 4px 14px rgba(20,112,204,.12);
}
.jj-solutions__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jj-solutions__icon img {
  max-width: 56px;
  max-height: 56px;
  display: block;
}
.jj-solutions__name {
  font-size: 15px;
  font-weight: 600;
}
.jj-solutions__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.jj-solutions__ctas .jj-btn {
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
}
.jj-btn--chat {
  border-color: #1470cc;
  background: #1470cc;
  color: #fff !important;
}
.jj-btn--chat:hover { background: #0d5aa8; color: #fff !important; }

/* Inquiry */
.jj-inquiry {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.jj-inquiry .form-group { margin-bottom: 14px; }
.jj-inquiry .input,
.jj-inquiry .textarea {
  width: 100%;
  border: 1px solid #ced3d9;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}
.jj-inquiry select,
.jj-inquiry select.input {
  width: 100%;
  height: 42px;
  border: 1px solid #ced3d9;
  border-radius: 4px;
  padding: 10px 36px 10px 12px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  cursor: pointer;
  overflow: visible;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1.2 1.2L6 6l4.8-4.8'/%3E%3C/svg%3E") no-repeat right 12px center;
}
.jj-inquiry .textarea { min-height: 110px; resize: vertical; }
.jj-inquiry .button {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 21px;
  background: var(--jj-red);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
.jj-inquiry .button:hover { background: #cc2929; }

/* Footer */
.jj-footer {
  background: #1b2430;
  color: #c9d1d9;
  padding: 48px 0 24px;
}
.jj-footer a { color: #c9d1d9; }
.jj-footer a:hover { color: #fff; }
.jj-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}
.jj-footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
  color: #fff;
}
.jj-footer__brand{
  display:inline-block;
  background:#fff;
  padding:8px 12px;
  border-radius:6px;
  margin:0 0 14px;
  line-height:0;
}
.jj-footer__brand img{
  display:block;
  height:40px;
  width:auto;
  max-width:280px;
}
.jj-footer p, .jj-footer li {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
}
.jj-footer ul { list-style: none; margin: 0; padding: 0; }
.jj-footer__copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: #8b949e;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .jj-feat { grid-template-columns: 1fr 1.5fr; }
  .jj-feat__grid { grid-template-columns: repeat(2, 1fr); }
  .jj-feat__grid .jj-feat-card__wrap:nth-child(n + 5) { display: none; }
  .jj-foryou__grid { grid-template-columns: repeat(2, 1fr); }
  .jj-products { grid-template-columns: repeat(3, 1fr); }
  .jj-profile { grid-template-columns: 1fr; }
  .jj-profile-gallery { grid-template-columns: repeat(2, 1fr); }
  .jj-authsol { grid-template-columns: 1fr; gap: 28px; }
  .jj-footer__grid { grid-template-columns: 1fr 1fr; }
  .sr-nav .m-search-bar.layout-2-wings { width: 260px; }
  .shop-sign__header-title--text { max-width: 260px !important; }
}
@media (max-width: 768px) {
  .sr-layout-wrap { min-width: 0; padding: 0 12px; height: auto; }
  .sr-nav { height: auto !important; }
  .sr-nav-main { float: none; display: flex; overflow-x: auto; width: 100%; }
  .nav-search-bar { position: static; width: 100%; height: auto; padding: 0 0 8px; }
  .sr-nav .m-search-bar.layout-2-wings { width: 100%; }
  .shop-sign__btns-wrap .tm-status-on { display: none; }
  .shop-sign__body { height: 80px; }
  .jj-products { grid-template-columns: repeat(2, 1fr); }
  .jj-feat { grid-template-columns: 1fr; }
  .jj-feat__grid { grid-template-columns: repeat(2, 1fr); }
  .jj-foryou__grid { grid-template-columns: 1fr; }
  .jj-foryou__title { font-size: 18px; }
  .jj-footer__grid { grid-template-columns: 1fr; }
  .jj-company__inner { flex-direction: column; align-items: flex-start; }
  .multilingual-site .lang-content { flex-wrap: wrap; }
  .multilingual-site .lang-item { flex: 1 1 20%; }
}

/* ===== Inner pages: About / Solutions / Discover / Contact ===== */
.jj-inner { padding: 24px 0 56px; background: #f5f7fa; min-height: 60vh; }
.jj-page-banner {
  position: relative;
  height: 280px;
  background: #1b2430 center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jj-page-banner__mask {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 100%);
}
.jj-page-banner__title {
  position: relative; z-index: 1;
  color: #fff; font-size: 36px; font-weight: 600; letter-spacing: .04em;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.jj-crumb { font-size: 13px; color: #888; margin-bottom: 18px; }
.jj-crumb a { color: #1470cc; }
.jj-crumb span { margin: 0 6px; color: #ccc; }
.jj-crumb strong { color: #333; font-weight: 600; }

.jj-about { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.jj-about__side { position: sticky; top: 12px; }
.jj-about__nav {
  background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; overflow: hidden; margin-bottom: 16px;
}
.jj-about__nav a {
  display: block; padding: 12px 14px; border-bottom: 1px solid #f0f2f5; color: #333; font-size: 14px;
}
.jj-about__nav a:last-child { border-bottom: 0; }
.jj-about__nav a:hover { background: #f5f9ff; color: #1470cc; }
.jj-about__contact {
  background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; padding: 16px;
}
.jj-about__contact h3 { margin: 0 0 10px; font-size: 16px; }
.jj-about__person { margin-bottom: 12px; font-size: 13px; color: #555; }
.jj-about__person strong { display: block; color: #222; font-size: 15px; }
.jj-about__contact > .jj-open-chat {
  display: flex; width: 100%; box-sizing: border-box; margin: 0 0 18px;
}
.jj-mini-form { margin-top: 2px; }
.jj-mini-form .input,
.jj-mini-form textarea {
  width: 100%; border: 1px solid #ced3d9; border-radius: 4px; padding: 8px; margin: 0 0 10px; font-size: 13px; box-sizing: border-box;
}
.jj-mini-form textarea { min-height: 90px; }
.jj-mini-form .jj-btn { width: 100%; }
.jj-about__main { background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; padding: 24px 28px; }
.jj-about__block { margin-bottom: 36px; scroll-margin-top: 20px; }
.jj-about__block h2 {
  margin: 0 0 16px; font-size: 22px; padding-bottom: 10px; border-bottom: 2px solid #1470cc;
}
.jj-about__sub { margin: 22px 0 12px; font-size: 17px; color: #222; }
.jj-about__media { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-bottom: 18px; }
.jj-about__video { position: relative; background: #000; border-radius: 4px; overflow: hidden; aspect-ratio: 16/10; }
.jj-about__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.jj-about__video.is-playing .jj-profile__playbtn { display: none; }
.jj-about__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.jj-about__thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; aspect-ratio: 1; }
.jj-about__text { margin-top: 16px; font-size: 14px; line-height: 1.75; color: #444; }
.jj-about__text p { margin: 0 0 12px; }
.jj-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.jj-info-table th, .jj-info-table td {
  border: 1px solid #e6ebf0; padding: 10px 12px; vertical-align: top; text-align: left;
}
.jj-info-table th { width: 34%; background: #f7f9fc; color: #555; font-weight: 600; }
.jj-show-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.jj-show-grid__item {
  display: block; background: #fff; border: 1px solid #e6ebf0; border-radius: 8px; overflow: hidden; color: #333 !important;
  position: relative;
}
.jj-show-grid__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.jj-show-grid__item span { display: block; padding: 12px 12px 14px; font-size: 13px; line-height: 1.4; }
.jj-show-grid--docs { gap: 24px; }
.jj-show-grid--docs .jj-show-grid__item img {
  aspect-ratio: 3/4; object-fit: contain; background: #f7f8fa; padding: 12px; box-sizing: border-box;
}
.jj-show-grid__item--video .jj-profile__play {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%); pointer-events: none;
}

.jj-sol-head { margin-bottom: 24px; }
.jj-sol-head h1 { margin: 0 0 8px; font-size: 28px; }
.jj-sol-head p { margin: 0; color: #666; font-size: 15px; }
.jj-sol-list { display: grid; gap: 20px; }
.jj-sol-card {
  display: grid; grid-template-columns: 160px 1fr; gap: 24px; background: #fff;
  border: 1px solid #e6ebf0; border-radius: 8px; padding: 28px; align-items: center;
}
.jj-sol-card__icon img { width: 120px; height: 120px; object-fit: contain; display: block; margin: 0 auto; }
.jj-sol-card__body h2 { margin: 0 0 10px; font-size: 22px; }
.jj-sol-card__desc { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.jj-sol-card__desc p { margin: 0 0 6px; }
.jj-inner-inquiry { margin-top: 36px; background: #fff; border-radius: 8px; padding: 24px; border: 1px solid #e6ebf0; }
.jj-inner-inquiry h2 { margin: 0 0 16px; font-size: 20px; }

.jj-disc-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.jj-disc-tabs span {
  padding: 6px 14px; border-radius: 16px; background: #fff; border: 1px solid #dae0e6; font-size: 13px; color: #555;
}
.jj-disc-tabs .is-active { background: #1470cc; border-color: #1470cc; color: #fff; }
.jj-disc-feed {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.jj-disc-card {
  background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; overflow: hidden; position: relative;
}
.jj-disc-card__badge {
  position: absolute; left: 0; top: 10px; z-index: 1; background: #e64545; color: #fff;
  font-size: 11px; padding: 2px 8px; border-radius: 0 10px 10px 0;
}
.jj-disc-card__img { display: block; aspect-ratio: 1; background: #f5f5f5; }
.jj-disc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.jj-disc-card__title { margin: 10px 12px 4px; font-size: 14px; line-height: 1.4; height: 2.8em; overflow: hidden; }
.jj-disc-card__title a { color: #333; }
.jj-disc-card__price { margin: 0 12px; color: #e64545; font-size: 14px; font-weight: 600; }
.jj-disc-card__excerpt {
  margin: 0 12px 4px; font-size: 12px; color: #777; line-height: 1.45;
  height: 3.6em; overflow: hidden;
}
.jj-disc-card__meta { margin: 6px 12px 12px; color: #999; font-size: 12px; }

.jj-contact {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start;
}
.jj-contact__form-panel, .jj-contact__info {
  background: #fff; border: 1px solid #e6ebf0; border-radius: 8px; padding: 24px 28px;
}
.jj-contact__form-panel h1 { margin: 0 0 12px; font-size: 24px; }
.jj-contact__to { margin-bottom: 16px; font-size: 14px; color: #555; }
.jj-contact__to strong { margin-right: 8px; }
.jj-contact__to em { color: #888; font-style: normal; margin-left: 6px; }
.jj-contact__info h2 { margin: 0 0 16px; font-size: 20px; }
.jj-contact__list { list-style: none; margin: 0; padding: 0; }
.jj-contact__list li { margin: 0 0 16px; }
.jj-contact__list strong { display: block; color: #1470cc; font-size: 13px; margin-bottom: 4px; }
.jj-contact__list p { margin: 0; font-size: 14px; color: #333; line-height: 1.55; }
.jj-contact__qr { margin-top: 20px; text-align: center; }
.jj-contact__qr img { width: 120px; height: 120px; object-fit: contain; }
.jj-contact__qr p { margin: 8px 0 0; font-size: 12px; color: #888; }
.jj-inquiry label { display: block; margin-bottom: 6px; font-size: 13px; color: #555; }

.jj-btn--lg { height: 42px; padding: 0 28px; border-radius: 4px; font-size: 15px; min-width: 140px; }

/* Product list — MIC sidebar + rows */
.jj-plist { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.jj-plist__side { position: sticky; top: 12px; }
.jj-plist__search {
  display: flex; background: #fff; border: 1px solid #ced3d9; border-radius: 4px; margin-bottom: 16px; overflow: hidden;
}
.jj-plist__search input {
  flex: 1; border: 0; padding: 8px 10px; font-size: 13px; outline: none; min-width: 0;
}
.jj-plist__search button { width: 36px; border: 0; background: #fff; cursor: pointer; }
.jj-plist__groups { background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; overflow: hidden; }
.jj-plist__groups h3 { margin: 0; padding: 12px 14px 8px; font-size: 16px; }
.jj-plist__groups a {
  display: block; padding: 10px 14px; border-top: 1px solid #f0f2f5; color: #333; font-size: 14px;
}
.jj-plist__groups a:hover,
.jj-plist__groups a.is-active { background: #f5f7fa; color: #1470cc; font-weight: 600; }
.jj-plist__head { margin-bottom: 12px; }
.jj-plist__head h1 { margin: 0; font-size: 22px; }
.jj-plist__row {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px; background: #fff;
  border: 1px solid #e6ebf0; border-radius: 6px; padding: 16px; margin-bottom: 14px;
}
.jj-plist__img { display: block; background: #fff; aspect-ratio: 1; overflow: hidden; }
.jj-plist__img img { width: 100%; height: 100%; object-fit: contain; }
.jj-plist__info h2 { margin: 0 0 8px; font-size: 18px; line-height: 1.35; }
.jj-plist__info h2 a { color: #1470cc; }
.jj-plist__info h2 a:hover { color: var(--jj-red); }
.jj-plist__excerpt {
  margin: 0 0 12px; color: #666; font-size: 13px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.jj-plist__meta { font-size: 14px; color: #555; margin-bottom: 14px; }
.jj-plist__meta strong { color: #222; }
.jj-plist__inq { height: 36px; border-radius: 4px; }
.jj-plist__pager { text-align: center; padding: 12px 0 8px; }
.jj-plist__pager ul { list-style: none; margin: 0; padding: 0; }
.jj-plist__pager li { display: inline-block; margin: 0 3px; }
.jj-plist__pager a, .jj-plist__pager span {
  display: inline-block; min-width: 32px; padding: 6px 10px; border: 1px solid #dae0e6;
  background: #fff; border-radius: 3px; color: #333; font-size: 13px;
}
.jj-plist__pager .active a, .jj-plist__pager .thisclass, .jj-plist__pager .active span {
  background: #1470cc; border-color: #1470cc; color: #fff;
}

/* Product detail */
.jj-pd { display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; padding: 24px; }
.jj-pd__gallery { min-width: 0; }
.jj-pd__zoom, .jj-pd__zoom img { display: block; width: 100%; }
.jj-pd__thumbs { margin-top: 10px; }
.jj-pd__thumbs .item { border: 1px solid #e6ebf0; padding: 4px; background: #fff; }
.jj-pd__thumbs img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.jj-pd__buy h1 { margin: 0 0 8px; font-size: 22px; line-height: 1.35; }
.jj-pd__lead { margin: 0 0 16px; color: #888; font-size: 14px; line-height: 1.5; }
.jj-pd__price { font-size: 28px; font-weight: 700; color: #222; }
.jj-pd__price span { font-size: 14px; font-weight: 400; color: #888; }
.jj-pd__moq { margin: 6px 0 18px; font-size: 14px; }
.jj-pd__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.jj-pd__highlights h2 { margin: 0 0 10px; font-size: 16px; }
.jj-pd__highlights-body { max-height: 200px; overflow: hidden; position: relative; font-size: 14px; line-height: 1.65; color: #444; }
.jj-pd__highlights-body img, .jj-pd__highlights-body table { display: none; }
.jj-pd__highlights-body::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 48px;
  background: linear-gradient(transparent, #fff);
}
.jj-pd__more {
  display: inline-block; margin-top: 6px; border: 0; background: none; color: #1470cc;
  cursor: pointer; font-size: 13px; padding: 0;
}
.jj-ptabs { margin-top: 24px; background: #fff; border: 1px solid #e6ebf0; border-radius: 6px; }
.jj-ptabs__nav { display: flex; gap: 28px; padding: 0 24px; border-bottom: 1px solid #e6ebf0; }
.jj-ptabs__nav a {
  padding: 14px 0; font-size: 16px; color: #666; border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.jj-ptabs__nav a.is-active { color: #222; font-weight: 700; border-bottom-color: var(--jj-red); }
.jj-ptabs__panel { display: none; padding: 24px; }
.jj-ptabs__panel.is-active { display: block; }
.jj-ptabs__panel h2 { margin: 0 0 14px; font-size: 20px; }
.jj-pd__label {
  display: inline-block; margin: 22px 0 12px; padding: 4px 10px; background: #f0f2f5;
  border-radius: 3px; font-size: 13px; font-weight: 600; color: #555;
}
.jj-pd__content { font-size: 14px; line-height: 1.75; color: #444; }
.jj-pd__content img { max-width: 100%; height: auto; }
.jj-pd__hint { color: #666; font-size: 14px; }
.jj-pd__photos { margin-top: 20px; display: grid; gap: 12px; }
.jj-pd__photos img { width: 100%; height: auto; display: block; }
.jj-pd__rec { margin-top: 28px; }
.jj-pd__rec h2 { margin: 0 0 16px; font-size: 20px; }
.jj-faq { margin: 0; }
.jj-faq dt { margin: 16px 0 6px; font-weight: 700; font-size: 15px; }
.jj-faq dd { margin: 0; color: #555; font-size: 14px; line-height: 1.6; }

/* About polish */
.jj-about__nav-title {
  padding: 12px 14px; font-weight: 700; font-size: 16px; background: #f7f9fc; border-bottom: 1px solid #e6ebf0;
}
.jj-about__nav a.is-active { background: #f0f2f5; font-weight: 700; }
.jj-about__top { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; margin-bottom: 18px; }
.jj-about__media-col { min-width: 0; }
.jj-about__tours { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.jj-about__tours .jj-btn { width: 100%; border-radius: 4px; }
.jj-info-table--verified td { font-weight: 600; }
.jj-info-table--verified td::before {
  content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 8px;
  border-radius: 50%; background: #2e9b4e; vertical-align: middle;
}
.jj-info-table--verified .jj-auth__val--links::before { display: none; }
.jj-auth__val--links a { color: #1470cc; margin-right: 8px; }

/* Chat / WhatsApp modal */
.jj-modal {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.jj-modal[hidden] { display: none !important; }
.jj-modal__box {
  position: relative; width: 100%; max-width: 520px; background: #fff; border-radius: 8px; padding: 28px 24px 22px;
}
.jj-modal__x {
  position: absolute; right: 10px; top: 6px; border: 0; background: none; font-size: 28px; cursor: pointer; color: #888; line-height: 1;
}
.jj-modal__box h3 { margin: 0 0 8px; font-size: 20px; }
.jj-modal__person { margin: 0 0 16px; color: #555; font-size: 13px; }
.jj-modal__person strong { display: block; color: #222; font-size: 15px; }
.jj-modal__qrs { display: flex; justify-content: center; text-align: center; }
.jj-modal__qrs img { width: 160px; height: 160px; object-fit: contain; margin: 0 auto; display: block; background: #fafafa; }
.jj-modal__qrs figcaption { margin-top: 8px; font-size: 12px; color: #888; }
.jj-modal__ways { list-style: none; margin: 16px 0; padding: 0; font-size: 14px; }
.jj-modal__ways li { margin: 6px 0; }
.jj-modal__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.jj-modal__ctas .jj-btn { flex: 1; border-radius: 4px; }

@media (max-width: 1024px) {
  .jj-about { grid-template-columns: 1fr; }
  .jj-about__side { position: static; }
  .jj-about__media { grid-template-columns: 1fr; }
  .jj-about__top { grid-template-columns: 1fr; }
  .jj-plist { grid-template-columns: 1fr; }
  .jj-plist__side { position: static; }
  .jj-pd { grid-template-columns: 1fr; }
  .jj-disc-feed { grid-template-columns: repeat(3, 1fr); }
  .jj-sol-card { grid-template-columns: 100px 1fr; }
}
@media (max-width: 768px) {
  .jj-contact { grid-template-columns: 1fr; }
  .jj-disc-feed { grid-template-columns: repeat(2, 1fr); }
  .jj-show-grid { grid-template-columns: repeat(2, 1fr); }
  .jj-sol-card { grid-template-columns: 1fr; text-align: center; }
  .jj-plist__row { grid-template-columns: 1fr; }
  .jj-ptabs__nav { gap: 16px; overflow-x: auto; }
}
