/* ==========================================
   nws- 前缀样式：来自 newwebs 参考设计
   所有 class 均以 nws- 前缀避免与原有样式冲突
   ========================================== */

/* 模块 1：左右产品展示模块 */
.nws-main-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  .nws-main-container {
    flex-direction: row;
    height: 80vh;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .nws-main-container {
    flex-direction: column;
    height: auto;
    padding: 0 5%;
    gap: 20px;
  }
}
.nws-left-hero {
  flex: 1.4;
  position: relative;
  overflow: hidden;
  /*border-radius: 6px;*/
  background: #f5f5f5;
}
.nws-left-hero .nws-hero-link {
  display: block;
  width: 100%;
  height: 100%;
}
.nws-left-hero .nws-hero-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .nws-left-hero {
    width: 100%;
    flex: none;
    height: 45vh;
    min-height: 250px;
  }
}
.nws-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 60px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .nws-right-content {
    padding-left: 0;
    padding-bottom: 30px;
    justify-content: flex-start;
    gap: 30px;
  }
}
.nws-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
}
@media (max-width: 768px) {
  .nws-products-grid {
    gap: 20px;
    margin-bottom: 0;
    padding: 0 10px;
  }
}
.nws-products-grid .nws-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.nws-products-grid .nws-product-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s ease;
}
.nws-products-grid .nws-product-link:hover {
  transform: translateY(-5px);
}
.nws-products-grid .nws-product-link .nws-product-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 12px;
}
.nws-products-grid .nws-product-link .nws-product-image-wrapper img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nws-products-grid .nws-product-link .nws-product-image-wrapper {
    margin-bottom: 8px;
  }
}
.nws-products-grid .nws-product-link .nws-product-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .nws-products-grid .nws-product-link .nws-product-title {
    font-size: 1rem;
    margin-top: 3px;
  }
}
.nws-cta-section-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  cursor: pointer;
}
.nws-cta-section-link:hover .nws-cta-title {
  opacity: 0.7;
}
.nws-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  width: 100%;
}
.nws-cta-section .nws-icon-svg {
  width: 28px;
  height: 28px;
  color: #00a8d2;
  margin-bottom: 15px;
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}
.nws-cta-section .nws-cta-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .nws-cta-section .nws-cta-title {
    font-size: 1rem;
  }
}
.nws-cta-section .nws-cta-subtitle {
  font-size: 14px;
  color: #666666;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .nws-cta-section .nws-cta-subtitle {
    white-space: normal;
    max-width: 90%;
    line-height: 1.5;
  }
}
.nws-cta-section-link:hover .nws-icon-svg {
  transform: scale(1.1);
}

/* 模块 2：左文右图模块 */
.nws-split-banner-module {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 110px auto 0;
  padding: 0;
  background-color: #ffffff;
  height: 80vh;
  overflow: hidden;
}
.nws-split-banner-module .nws-split-text-side {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.nws-split-banner-module .nws-split-text-side .nws-cta-section {
  width: 100%;
  margin: 0;
  padding: 0;
}
.nws-split-banner-module .nws-split-image-side {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.nws-split-banner-module .nws-split-image-side a {
  display: block;
  width: 100%;
  height: 100%;
}
.nws-split-banner-module .nws-split-image-side a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .nws-split-banner-module {
    flex-direction: column-reverse;
    height: auto;
    padding: 0;
    margin-top: 70px;
  }
  .nws-split-banner-module .nws-split-text-side {
    flex: none;
    width: 100%;
    padding: 40px 20px;
  }
  .nws-split-banner-module .nws-split-image-side {
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }
}

/* 模块 3：一排 5 个产品卡片展示 */
.nws-five-grid-module {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 60px auto 0;
  padding: 0 5%;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .nws-five-grid-module {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 1199px) {
  .nws-five-grid-module {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    margin-top: 30px;
  }
}
.nws-five-grid-module .nws-grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .nws-five-grid-module .nws-grid-card {
    width: calc((100% - 80px * 3) / 4);
    margin-right: 80px;
  }
  .nws-five-grid-module .nws-grid-card:last-child {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .nws-five-grid-module .nws-grid-card {
    width: calc(50% - 30px);
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .nws-five-grid-module .nws-grid-card {
    width: calc(33.33% - 40px);
  }
}
@media (max-width: 480px) {
  .nws-five-grid-module .nws-grid-card {
    width: calc(50% - 30px);
  }
}
.nws-five-grid-module .nws-grid-card .nws-grid-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: transform 0.3s ease;
}
.nws-five-grid-module .nws-grid-card .nws-grid-link:hover {
  transform: translateY(-5px);
}
.nws-five-grid-module .nws-grid-card .nws-grid-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  background-color: transparent;
}
.nws-five-grid-module .nws-grid-card .nws-grid-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.nws-five-grid-module .nws-grid-card .nws-grid-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .nws-five-grid-module .nws-grid-card .nws-grid-title {
    font-size: 12px;
  }
}

/* 模块 4：品牌故事 Legend & Craftsmanship */
.nws-legend-story-module {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 110px auto 0;
  padding: 0;
  background-color: #ffffff;
  height: 80vh;
  overflow: hidden;
  align-items: stretch;
}
@media (min-width: 769px) {
  .nws-legend-story-module {
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .nws-legend-story-module {
    flex-direction: column;
    height: auto;
    padding: 0 5% 30px 5%;
    margin-top: 70px;
    gap: 20px;
  }
}
.nws-legend-story-module .nws-legend-text-side {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px 40px 5%;
}
@media (max-width: 768px) {
  .nws-legend-story-module .nws-legend-text-side {
    flex: none;
    width: 100%;
    padding: 20px 0;
    justify-content: flex-start;
  }
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-top-line {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-top-line .nws-legend-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #34a8c6;
  margin-right: 15px;
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-top-line .nws-legend-subtitle {
  font-size: 11px;
  letter-spacing: 2px;
  color: #666666;
  text-transform: uppercase;
  font-weight: 500;
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-title-primary {
  font-size: 32px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .nws-legend-story-module .nws-legend-text-side .nws-legend-title-primary {
    font-size: 26px;
  }
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-title-highlight {
  font-size: 32px;
  font-weight: 500;
  color: #34a8c6;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .nws-legend-story-module .nws-legend-text-side .nws-legend-title-highlight {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-description {
  margin-bottom: 40px;
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-description p {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .nws-legend-story-module .nws-legend-text-side .nws-legend-description p {
    font-size: 13px;
    line-height: 1.6;
  }
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #34a8c6;
  background-color: transparent;
  border: 1px solid #34a8c6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nws-legend-story-module .nws-legend-text-side .nws-legend-btn:hover {
  background-color: #34a8c6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .nws-legend-story-module .nws-legend-text-side .nws-legend-btn {
    align-self: center;
    padding: 12px 24px;
    font-size: 11px;
  }
}
.nws-legend-story-module .nws-legend-image-side {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  padding: 0;
  margin: 0;
}
.nws-legend-story-module .nws-legend-image-side a {
  display: block;
  width: 100%;
  height: 100%;
}
.nws-legend-story-module .nws-legend-image-side a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .nws-legend-story-module .nws-legend-image-side {
    flex: none;
    width: 100%;
    height: 45vh;
    min-height: 300px;
  }
}

/* 模块 5：Brand News 品牌新闻 */
.nws-news-module-full {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 110px auto 0;
  padding: 0;
  background-color: #ffffff;
  align-items: center;
}
.nws-news-module-full .nws-news-title {
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .nws-news-module-full .nws-news-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.nws-news-module-full .nws-news-grid-full {
  display: flex;
  width: 100%;
  gap: 5px;
}
@media (max-width: 768px) {
  .nws-news-module-full .nws-news-grid-full {
    flex-direction: column;
    gap: 50px;
  }
}
.nws-news-module-full .nws-news-card-full {
  width: calc((100% - 5px * 2) / 3);
  border: none;
}
@media (max-width: 768px) {
  .nws-news-module-full .nws-news-card-full {
    width: 100%;
  }
}
.nws-news-module-full .nws-news-card-full .nws-news-link-full {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: transform 0.3s ease;
}
.nws-news-module-full .nws-news-card-full .nws-news-link-full:hover {
  transform: translateY(-5px);
}
.nws-news-module-full .nws-news-card-full .nws-news-link-full:hover .nws-news-readmore-full {
  opacity: 1;
}
.nws-news-module-full .nws-news-card-full .nws-news-image-wrapper-full {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f5f5f5;
}
.nws-news-module-full .nws-news-card-full .nws-news-image-wrapper-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nws-news-module-full .nws-news-card-full .nws-news-info-full {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 5% 0;
}
.nws-news-module-full .nws-news-card-full .nws-news-info-full .nws-news-date-full {
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.nws-news-module-full .nws-news-card-full .nws-news-info-full .nws-news-headline-full {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .nws-news-module-full .nws-news-card-full .nws-news-info-full .nws-news-headline-full {
    font-size: 15px;
  }
}
.nws-news-module-full .nws-news-card-full .nws-news-info-full .nws-news-readmore-full {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* 模块 6：Exclusive Services & Ordering */
.nws-services-module {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 130px auto 0;
  padding: 0 5%;
  background-color: #ffffff;
  align-items: center;
}
.nws-services-module .nws-services-image-wrapper {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 50px;
  border-radius: 2px;
}
.nws-services-module .nws-services-image-wrapper a {
  display: block;
  width: 100%;
}
.nws-services-module .nws-services-image-wrapper a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.nws-services-module .nws-services-image-wrapper a:hover img {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .nws-services-module .nws-services-image-wrapper {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.nws-services-module .nws-services-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.nws-services-module .nws-services-text-wrapper .nws-services-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.nws-services-module .nws-services-text-wrapper .nws-services-title .nws-highlight {
  color: #34a8c6;
}
@media (max-width: 768px) {
  .nws-services-module .nws-services-text-wrapper .nws-services-title {
    font-size: 26px;
  }
}
.nws-services-module .nws-services-text-wrapper .nws-services-subtitle {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .nws-services-module .nws-services-text-wrapper .nws-services-subtitle {
    font-size: 18px;
  }
}
.nws-services-module .nws-services-text-wrapper .nws-services-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .nws-services-module .nws-services-text-wrapper .nws-services-desc {
    font-size: 13px;
  }
}

/* contact-section 与上方模块额外间距 */
.contact-section {
  margin-top: 30px;
}
