/*
Theme Name: Rayzura
Theme URI: https://rayzura.com
Author: Rayzura
Description: Rayzura — hair & skin care manufacturer store, 1:1 replica of the original Alibaba storefront (green storefront style). WooCommerce inquiry mode.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: rayzura
*/

:root {
  --green: #125827;
  --green-dark: #074719;
  --green-active: #0b471d;
  --orange: #ff6a00;
  --text: #333;
  --muted: #777;
  --line: #dbe3ef;
  --page: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #36313d;
  background: var(--page);
  font-family: Roboto, "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

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

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

/* ============ Shop header (原始阿里店铺头部蓝色区，1:1 还原) ============ */
.shop-header {
  position: relative;
  overflow: hidden;
  background:
    url("assets/decor/header-bg.svg") right top / auto 100% no-repeat,
    linear-gradient(180deg, #dcebf9 0%, #eef6fd 55%, #f7fbff 100%);
}

.shop-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 520px;
  height: 320px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.shop-header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: start;
  max-width: 1708px;
  margin: 0 auto;
  padding: 24px 28px 20px;
}

.shop-logo img {
  height: 58px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}

.shop-name {
  margin: 2px 0 8px;
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 700;
}

.shop-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

.shop-badges .verified-badge {
  color: #2f6bd8;
  font-weight: 700;
}

.shop-badges .yrs {
  color: #333;
  font-weight: 600;
}

.shop-badges .dot {
  color: #aaa;
}

.shop-cats {
  margin: 0 0 12px;
  color: #666;
  font-size: 13px;
}

.shop-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid #d9e4f0;
  border-radius: 16px;
  background: #fff;
  color: #555;
  font-size: 13px;
}

.shop-tags .tag::before { content: "\2714"; color: #2f6bd8; font-size: 11px; }

.shop-header-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  white-space: nowrap;
  min-width: 172px;
}

.verified-by {
  align-self: flex-end;
  padding: 3px 9px;
  border: 1px solid #cfe0f5;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  color: #2f6bd8;
  font-size: 12px;
}
.verified-by b { color: #2f6bd8; }

.hdr-btn {
  display: block;
  text-align: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .15s, background .15s;
}
.hdr-btn-primary {
  background: #ff6a00;
  color: #fff;
  border: 1px solid #ff6a00;
  box-shadow: 0 3px 10px rgba(255, 106, 0, 0.28);
}
.hdr-btn-primary:hover { filter: brightness(1.06); }
.hdr-btn-chat {
  background: #fff;
  color: #ff6a00;
  border: 1px solid #ffb787;
}
.hdr-btn-chat:hover { background: #fff4ec; }

/* ============ 绿色导航 ============ */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 62px;
  background: var(--green);
}

.nav-inner {
  display: flex;
  align-items: stretch;
  max-width: 1708px;
  height: 62px;
  margin: 0 auto;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.nav-link.active {
  background: var(--green-active);
}

.nav-link:hover {
  background: var(--green-dark);
}

.chevron {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 24px;
  transform: translateY(-1px);
}

.store-search {
  position: relative;
  flex: 0 0 306px;
  align-self: center;
  margin-left: auto;
  margin-right: 22px;
}

.store-search input {
  width: 100%;
  height: 40px;
  padding: 0 48px 0 18px;
  border: 1px solid #d9dee6;
  border-radius: 22px;
  color: #666;
  font-size: 17px;
  outline: none;
}

.store-search button {
  position: absolute;
  top: 8px;
  right: 13px;
  width: 22px;
  height: 22px;
  border: 2px solid #c9d1dc;
  border-radius: 50%;
  background: transparent;
}

.store-search button::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: #c9d1dc;
  transform: rotate(45deg);
}

/* ============ Hero ============ */
.hero-banner {
  position: relative;
  overflow: hidden;
  height: 650px;
  background: #6d83c9;
}

.banner-track {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 650px;
  transform: translateX(-50%);
}

.banner-track img {
  width: 1920px;
  height: 650px;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 27, 63, 0.55);
}

.slider-dots .active {
  background: var(--orange);
}

/* ============ Floating contact ============ */
.contact-float {
  position: fixed;
  z-index: 40;
  top: 438px;
  right: 22px;
  overflow: hidden;
  width: 96px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.contact-float a {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #777;
  font-size: 15px;
  line-height: 1.16;
  text-align: center;
}

.contact-float a + a {
  border-top: 1px solid #edf0f4;
}

.mail-icon,
.chat-icon {
  position: relative;
  width: 28px;
  height: 22px;
  color: var(--orange);
}

.mail-icon {
  border: 3px solid currentColor;
  border-radius: 3px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 15px;
  height: 3px;
  background: currentColor;
}

.mail-icon::before {
  left: 1px;
  transform: rotate(31deg);
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-31deg);
}

.chat-icon {
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.chat-icon::before,
.chat-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.chat-icon::before {
  left: 7px;
}

.chat-icon::after {
  right: 7px;
}

/* ============ Layout ============ */
.content-width {
  max-width: 1708px;
  margin: 0 auto;
  padding: 0 28px;
}

.languages {
  padding: 24px 0 72px;
  background: #fff;
}

.languages h1 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.2;
}

.divider {
  height: 1px;
  margin-bottom: 34px;
  background: var(--line);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  row-gap: 28px;
  column-gap: 22px;
}

.language-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #555;
  font-size: 20px;
  white-space: nowrap;
}

.language-grid b {
  display: inline-flex;
  min-width: 28px;
  height: 21px;
  padding: 0 3px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  color: #55a344;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.language-grid a:nth-child(3n+2) b { color: #cb1f17; }
.language-grid a:nth-child(3n) b { color: #1a88cd; }

.supplier h2,
.section-title h2,
.contact-layout h2 {
  margin: 0;
  color: #222;
  font-size: 28px;
}

.contact-layout p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-section {
  padding: 46px 0 62px;
  background: #f6f7f8;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-title a {
  color: var(--green);
  font-weight: 700;
}

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

.product-grid article {
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: #fff;
}

.product-grid img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #fff;
  padding: 14px;
}

.product-grid h3 {
  min-height: 66px;
  margin: 14px 14px 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.product-grid p {
  margin: 0 14px 16px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.contact-section {
  padding: 52px 0 72px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: 12px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #d9dfe6;
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
}

.inquiry-form button {
  height: 42px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-weight: 700;
}

/* ============ Company overview / capabilities ============ */
.company-overview {
  padding: 40px 0 58px;
  background: #fff;
}

.verification-line {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #edf0f3;
  padding-top: 22px;
  margin-bottom: 26px;
  color: #666;
  font-size: 15px;
}

.verification-line img {
  height: 30px;
  width: auto;
}

.company-intro {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 34px;
}

.intro-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #000;
}
.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-cover {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.video-cover img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.video-cover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23125827' d='M8 5v14l11-7z'/%3E%3C/svg%3E")
    center / 24px no-repeat;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.video-cover.rz-playing::after { display: none; }

.intro-copy h2 {
  margin: 0 0 12px;
  color: #222;
  font-size: 26px;
}

.intro-copy p {
  margin: 0 0 16px;
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.sample-link {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}

.capability-card {
  position: relative;
  border: 1px solid #e9edf1;
  border-radius: 10px;
  padding: 32px 26px 26px;
  background: #fafcfa;
}

.verified-ribbon {
  position: absolute;
  top: -13px;
  left: 26px;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
}

.verified-ribbon span {
  font-size: 14px;
  font-weight: 700;
}

.verified-ribbon small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.capability-item {
  text-align: center;
}

.capability-item img {
  width: 44px;
  height: 44px;
  padding: 12px;
  margin: 0 auto 12px;
  background: #d7e6f9;
  border-radius: 50%;
  box-sizing: content-box;
  object-fit: contain;
}

.capability-item h3 {
  margin: 0;
  color: #36313d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

/* ============ Rayzura 首页装修板块 (1:1 重建原始长图板块) ============ */
.rz-section { padding: 50px 0; background: #fff; }
.rz-section.rz-alt { background: #f6f8f6; }
.rz-h2 { text-align: center; color: var(--green); font-size: 34px; font-weight: 800; letter-spacing: .5px; margin: 0 0 14px; }
.rz-underline { width: 100%; max-width: 1100px; height: 2px; background: #e3e8e3; margin: 0 auto 36px; }

.rz-about-grid { display: grid; grid-template-columns: 460px 1fr; gap: 44px; align-items: center; }
.rz-about-img { width: 100%; border-radius: 8px; }
.rz-about-copy h3 { color: var(--green); font-size: 22px; margin: 0 0 14px; }
.rz-about-copy p { color: #555; font-size: 15px; line-height: 1.75; margin: 0 0 20px; }
.rz-about-stats { display: flex; gap: 48px; }
.rz-about-stats strong { display: block; color: var(--green); font-size: 34px; font-weight: 800; }
.rz-about-stats span { color: #777; font-size: 13px; }

.rz-offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 20px; }
.rz-offer-item { text-align: center; }
.rz-offer-ico { display: inline-block; width: 58px; height: 58px; margin-bottom: 14px; border: 2px solid var(--green); border-radius: 50%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23125827' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 28px no-repeat; }
.rz-offer-item h4 { color: #333; font-size: 15px; font-weight: 600; margin: 0; }

.rz-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.rz-why-grid strong { display: block; color: var(--green); font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.rz-why-grid span { color: #666; font-size: 14px; }

.rz-rd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.rz-rd-img { width: 100%; border-radius: 8px; }
.rz-rd-list { list-style: none; padding: 0; margin: 0; }
.rz-rd-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid #e6ece6; color: #444; font-size: 17px; }
.rz-rd-list li::before { content: "\2714"; position: absolute; left: 4px; color: var(--green); font-weight: 700; }

.rz-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rz-cat { position: relative; display: block; overflow: hidden; border-radius: 8px; }
.rz-cat img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform .4s; }
.rz-cat:hover img { transform: scale(1.05); }
.rz-cat span { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 14px; background: linear-gradient(transparent, rgba(18, 88, 39, .88)); color: #fff; font-size: 18px; font-weight: 700; }

.rz-cert-icons { display: block; width: 100%; max-width: 900px; margin: 0 auto 30px; }
.rz-cert-wall { display: block; width: 100%; max-width: 1400px; margin: 0 auto 28px; }
.rz-strength-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center; }
.rz-strength-grid div { padding: 22px 10px; border-radius: 8px; background: #f6f8f6; }
.rz-strength-grid strong { display: block; color: var(--green); font-size: 26px; font-weight: 800; }
.rz-strength-grid span { display: block; margin-top: 6px; color: #666; font-size: 13px; }
@media (max-width: 900px) { .rz-strength-grid { grid-template-columns: repeat(3, 1fr); } }
.rz-cert-note { max-width: 1100px; margin: 0 auto; padding: 26px 40px; border-radius: 6px; background: var(--green); color: #fff; text-align: center; }
.rz-cert-note p { margin: 0; font-size: 17px; line-height: 1.65; }

.rz-sub { max-width: 900px; margin: -20px auto 30px; text-align: center; color: #777; font-size: 16px; }
.rz-fullimg { display: block; width: 100%; max-width: 1400px; margin: 0 auto; }

.rz-hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.rz-hero-slide.active { opacity: 1; }

@media (max-width: 1100px) {
  .rz-about-grid, .rz-rd-grid { grid-template-columns: 1fr; }
  .rz-offer-grid, .rz-why-grid, .rz-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .rz-h2 { font-size: 27px; }
  .rz-cert-note { padding: 20px 22px; }
}

/* ============ WooCommerce 询价制 ============ */
.rz-inquiry-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  border-radius: 4px;
  background: var(--green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
}

.rz-inquiry-btn:hover {
  background: var(--green-dark);
}

.rz-inquiry-lg {
  padding: 12px 28px;
  font-size: 16px;
}

/* ============ 产品列表页 (照原始 productlist：左分类 + 右网格) ============ */
.rz-shop-wrap { background: #f6f7f8; padding: 30px 0 60px; }
.rz-shop { display: grid; grid-template-columns: 232px 1fr; gap: 26px; align-items: start; }
.rz-shop-side { background: #fff; border: 1px solid #eaeaea; border-radius: 6px; padding: 16px 0; }
.rz-shop-side h3 { margin: 0 0 8px; padding: 0 20px; color: var(--green); font-size: 18px; }
.rz-shop-side ul { list-style: none; margin: 0; padding: 0; }
.rz-shop-side li a { display: block; padding: 5px 20px; border-left: 3px solid transparent; color: #555; font-size: 14px; line-height: 32px; }
.rz-moq { padding: 0 12px 8px; color: #ff6a00; font-size: 13px; font-weight: 600; }
.rz-shop-side li a:hover, .rz-shop-side li.active a { color: var(--green); background: #f4f9f5; border-left-color: var(--green); font-weight: 600; }
.rz-shop-main { min-height: 520px; background: #fff; border: 1px solid #eaeaea; border-radius: 6px; padding: 22px 24px; }
.rz-shop-main .woocommerce-products-header__title, .rz-shop-main h1.page-title { margin: 0 0 16px; color: #222; font-size: 24px; }
.rz-shop-main ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 !important; padding: 0 !important; list-style: none; }
.rz-shop-main ul.products::before, .rz-shop-main ul.products::after,
.woocommerce div.product .related.products ul.products::before,
.woocommerce div.product .related.products ul.products::after { content: none !important; display: none !important; }
.rz-shop-main ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; padding: 0 !important; border: 1px solid #ececec; border-radius: 6px; overflow: hidden; text-align: left; }
.rz-shop-main ul.products li.product a img { margin: 0 !important; border-radius: 0; width: 100%; height: 210px; object-fit: contain; background: #fff; padding: 12px; }
.rz-shop-main ul.products li.product .woocommerce-loop-product__title { padding: 12px 12px 6px; font-size: 15px; font-weight: 500; line-height: 1.4; color: #333; min-height: 62px; }
.rz-shop-main ul.products li.product .rz-inquiry-btn { display: inline-block; margin: 0 12px 14px; }
.rz-shop-main .woocommerce-result-count { color: #888; font-size: 14px; margin-bottom: 14px; }
.rz-shop-main .woocommerce-ordering { margin-bottom: 16px; }
.woocommerce-breadcrumb { max-width: 1708px; margin: 0 auto 4px; padding: 12px 28px 0; color: #999; font-size: 13px; }

/* 产品详情页：全宽，图左 + 信息右 */
.rz-single .rz-shop-main { padding: 30px 34px; background: #fff; border: 1px solid #eaeaea; border-radius: 6px; }
.woocommerce div.product { display: grid; grid-template-columns: 44% 1fr; gap: 42px; }
.woocommerce div.product .woocommerce-product-gallery { width: 100% !important; margin: 0 !important; float: none !important; }
.woocommerce div.product .summary { width: auto !important; margin: 0 !important; float: none !important; }
.woocommerce div.product .product_title { margin: 0 0 12px; font-size: 26px; color: #222; }
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells { grid-column: 1 / -1; margin-top: 20px; }
.woocommerce div.product .related.products ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.woocommerce div.product .related.products ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; border: 1px solid #ececec; border-radius: 6px; overflow: hidden; }
.woocommerce div.product .related.products ul.products li.product img { width: 100%; height: 200px; object-fit: contain; background: #fff; padding: 12px; }
@media (max-width: 900px) { .woocommerce div.product { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .rz-shop { grid-template-columns: 1fr; }
  .rz-shop-main ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .rz-shop-main { padding: 14px; }
  .rz-shop-main ul.products { grid-template-columns: 1fr !important; gap: 14px; }
  .rz-shop-main ul.products li.product a img { height: 240px; }
  .rz-cp-main { padding: 18px; }
  .woocommerce-ordering, .woocommerce-result-count { float: none !important; width: 100%; }
  .shop-header-inner { padding: 16px 14px; gap: 14px; }
  .shop-name { font-size: 21px; }
  .shop-cats, .shop-badges { font-size: 12px; }
  .shop-tags .tag { font-size: 11px; padding: 4px 10px; }
  .nav-link { padding: 0 11px; font-size: 15px; }
}

/* ============ 内页 (Company / Contacts / Promotion) ============ */
.rz-page { padding: 40px 0 70px; background: #fff; }
.rz-page-title { color: var(--green); font-size: 32px; margin: 0 0 8px; }
.rz-perf, .rz-caps { margin: 30px 0; }
.rz-perf h2, .rz-caps h2 { color: #222; font-size: 22px; border-left: 4px solid var(--green); padding-left: 12px; margin: 0 0 18px; }
.rz-caps h2 small { margin-left: 8px; color: #2f6bd8; font-size: 13px; font-weight: 400; }
.rz-perf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rz-perf-grid div { padding: 24px; border-radius: 8px; background: #f6f8f6; text-align: center; }
.rz-perf-grid strong { display: block; color: var(--green); font-size: 28px; font-weight: 800; }
.rz-perf-grid span { display: block; margin-top: 6px; color: #777; font-size: 13px; }
.rz-caps ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rz-caps li { position: relative; padding: 14px 18px 14px 44px; border-radius: 6px; background: #f6f8f6; color: #444; }
.rz-caps li::before { content: "\2714"; position: absolute; left: 18px; color: var(--green); font-weight: 700; }
.rz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 24px; }
.rz-contact-info h3 { color: var(--green); font-size: 22px; margin: 0 0 16px; }
.rz-contact-info p { margin: 0 0 12px; color: #444; font-size: 16px; }
.rz-contact-info .todo { color: #c0392b; font-weight: 600; }
.rz-page .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 10px; }
@media (max-width: 900px) {
  .rz-perf-grid { grid-template-columns: repeat(2, 1fr); }
  .rz-caps ul, .rz-contact-grid, .rz-page .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Company profile / Contacts (照原版三栏布局) ============ */
.rz-cp-wrap { background: #f4f5f6; padding: 26px 0 60px; }
.rz-cp { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
.rz-cp-main { background: #fff; border: 1px solid #eaeaea; border-radius: 8px; padding: 28px 30px; }
.rz-cp-perf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.rz-cp-perf h2 { margin: 0 0 18px; font-size: 20px; color: #222; }
.rz-cp-score { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.rz-cp-score strong { font-size: 48px; font-weight: 800; color: #222; line-height: 1; }
.rz-cp-score span { font-size: 20px; color: #999; }
.rz-cp-score em { margin-left: 10px; font-style: normal; font-size: 13px; color: #555; line-height: 1.3; }
.rz-cp-score u { color: #2f6bd8; text-decoration: none; border-bottom: 1px solid #2f6bd8; }
.rz-cp-perf p { margin: 9px 0; font-size: 14px; color: #666; }
.rz-cp-perf p b { color: #222; }
.rz-cp-photo img { width: 100%; border-radius: 8px; }
.rz-cp-caps { margin-top: 24px; padding-top: 22px; border-top: 1px solid #eee; }
.rz-cp-caps h3 { margin: 0 0 14px; font-size: 16px; color: #222; }
.rz-cp-caps h3 small { margin-left: 6px; color: #2f6bd8; font-size: 12px; font-weight: 400; }
.rz-cp-caps ul { list-style: none; margin: 0 0 16px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 20px; }
.rz-cp-caps li { position: relative; padding: 7px 0 7px 26px; color: #444; font-size: 15px; }
.rz-cp-caps li::before { content: "\2714"; position: absolute; left: 0; color: #2f6bd8; }
.rz-cp-note { margin: 0; color: #666; font-size: 14px; line-height: 1.7; }
.rz-cp-card { background: #fff; border: 1px solid #eaeaea; border-radius: 8px; padding: 22px; }
.rz-cp-card h4 { margin: 0 0 16px; text-align: center; font-size: 17px; font-weight: 600; color: #333; }
.rz-cp-co { display: flex; gap: 10px; align-items: center; padding-bottom: 14px; }
.rz-cp-co img { width: 46px; height: 46px; padding: 4px; border-radius: 6px; background: #f4efe4; object-fit: contain; }
.rz-cp-co b { font-size: 14px; color: #333; line-height: 1.3; }
.rz-cp-inquiry { display: block; padding: 10px 0; border-top: 1px solid #eee; text-align: center; color: #2f6bd8; font-weight: 600; }
.rz-cp-badge { margin: 0; padding: 12px 0; border-top: 1px solid #eee; color: #777; font-size: 12px; text-align: center; }
.rz-cp-visit { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 0; border-top: 1px solid #eee; color: #555; }
.rz-ct-title { margin: 0 0 4px; font-size: 20px; color: #222; }
.rz-ct-person { display: flex; gap: 14px; align-items: center; margin: 22px 0; }
.rz-ct-avatar { width: 70px; height: 70px; padding: 6px; border-radius: 50%; background: #f4efe4; object-fit: contain; }
.rz-ct-person strong { display: block; font-size: 18px; color: #222; }
.rz-ct-person span { color: #777; font-size: 14px; }
.rz-ct-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-bottom: 26px; }
.rz-ct-rows div { padding: 11px 0; border-bottom: 1px solid #f0f0f0; color: #222; font-size: 14px; }
.rz-ct-rows div:last-child { grid-column: 1 / -1; }
.rz-ct-rows .todo { color: #c0392b; font-weight: 600; }
.rz-ct-formtitle { margin: 0 0 14px; font-size: 18px; color: var(--green); }
.rz-home-contact { list-style: none; margin: 16px 0 20px; padding: 0; }
.rz-home-contact li { padding: 7px 0; color: #444; font-size: 15px; }
.rz-home-contact a { color: var(--green); font-weight: 600; }
@media (max-width: 900px) {
  .rz-cp { grid-template-columns: 1fr; }
  .rz-cp-perf-row { grid-template-columns: 1fr; }
  .rz-cp-caps ul { grid-template-columns: 1fr; }
}

/* ============ Promotion (倒计时 banner) ============ */
.rz-promo-hero { padding: 34px 0; text-align: center; color: #333; background: #eee; }
.rz-promo-hero h1 { margin: 0 0 6px; font-size: 32px; font-weight: 700; color: #333; }
.rz-promo-hero p { margin: 0 0 24px; font-size: 16px; color: #666; }
.rz-countdown { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 0 0 28px; }
.rz-countdown span { position: relative; min-width: 44px; padding: 4px 8px; border-radius: 6px; background: linear-gradient(180deg, #333, #333 50%, #4c4c4c 51%, #4c4c4c); color: #fff; font-size: 24px; font-weight: 700; line-height: 34px; }
.rz-countdown span::after { content: attr(data-label); position: absolute; left: 0; right: 0; bottom: -20px; color: #888; font-size: 11px; font-weight: 400; }
.rz-promo-btn { display: inline-block; padding: 11px 30px; border-radius: 4px; background: var(--orange); color: #fff; font-weight: 700; }
.rz-promo-btn:hover { filter: brightness(1.08); }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .shop-header-inner {
    grid-template-columns: auto 1fr;
  }

  .shop-header-right {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
  }

  .nav-link {
    padding: 0 16px;
    font-size: 16px;
  }

  .store-search {
    flex-basis: 240px;
  }

  .language-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .company-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 18px;
  }
}

@media (max-width: 700px) {
  .shop-header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-logo img {
    margin: 0 auto;
  }

  .shop-badges,
  .shop-tags {
    justify-content: center;
  }

  .top-nav,
  .nav-inner {
    height: auto;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-link {
    height: 48px;
    flex: 1 1 auto;
  }

  .store-search {
    flex: 1 1 100%;
    margin: 8px 14px 12px;
  }

  .hero-banner,
  .banner-track,
  .banner-track img {
    height: 360px;
  }

  .banner-track {
    width: 1063px;
  }

  .banner-track img {
    width: 1063px;
  }

  .contact-float {
    display: none;
  }

  .language-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}
