@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #fef6f6;
  --text: #4e2c1d;
  --brand: #e91e63;
  --accent: #ff8a65;
  --dark: #3a1e11;
  --white: #ffffff;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  transition: all 0.5s ease;
}

.nav--scrolled {
  background: rgba(254, 246, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  width: 180px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 24px 0;
  transition: color 0.3s;
  color: var(--text);
}

.nav__link:hover { color: var(--accent); }

.nav__link--active { color: var(--brand); }

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 20px; 
  left: 0; 
  right: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: rgba(254, 246, 246, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(78, 44, 29, 0.12);
  border: 1px solid rgba(78, 44, 29, 0.06);
  padding: 8px 0;
  z-index: 60;
}

.nav__dropdown:hover .nav__dropdown-menu { display: block; }

.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
  color: var(--text);
}

.nav__dropdown-item:hover {
  color: var(--brand);
  background: #fef0f3;
}

.nav__actions {
  display: flex;
  align-items: center;
  /*gap: 16px;*/
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 60;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav--light .nav__hamburger span { background: #fff; }

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text);
}

.nav__btn:hover { background: rgba(78, 44, 29, 0.06); }

.nav__lang {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav__lang:hover { color: var(--accent); }

/* White text variant (on dark hero) */
.nav--light .nav__link,
.nav--light .nav__btn,
.nav--light .nav__lang { color: #fff; }

/* ===== Search Overlay ===== */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(254, 246, 246, 0.97);
  backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

.search-overlay.active { display: flex; }

.search-overlay__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.search-overlay__close:hover { transform: scale(1.1); }

.search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: 0 32px;
  text-align: center;
}

.search-overlay__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 24px;
}

.search-overlay__input {
  width: 100%;
  font-size: clamp(24px, 4vw, 42px);
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(78, 44, 29, 0.15);
  padding-bottom: 16px;
  outline: none;
  text-align: center;
}

.search-overlay__hint {
  font-size: 12px;
  color: var(--text);
  opacity: 0.35;
  margin-top: 24px;
}

/* ===== Hero Carousel ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.mobile_hero{
    display: none;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero__slide.active { opacity: 1; z-index: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.35) 100%);
  z-index: 2;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  z-index: 3;
}

.hero__subtitle {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero__title {
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease 0.2s forwards;
}

.hero__desc {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease 0.3s forwards;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all 0.3s;
}

.hero__arrow:hover { transform: translateY(-50%) scale(1.1); background: rgba(255,255,255,0.25); }

.hero__arrow--prev { left: 16px; }
.hero__arrow--next { right: 16px; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero__dot {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
  border: none;
}

.hero__dot.active {
  width: 32px;
  background: var(--brand);
}

.hero__dot:not(.active) { width: 10px; }

/* ===== Company Intro ===== */
.about-video {
  position: relative;
  height: clamp(400px, 70vh, 700px);
  overflow: hidden;
}

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

.about-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,30,17,0.3) 0%, rgba(58,30,17,0.55) 100%);
  z-index: 2;
}

.about-video__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  z-index: 3;
}

.about-video__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
}

.about-video__title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.about-video__desc {
  max-width: 500px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-video__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.about-video__btn:hover { transform: scale(1.05); }

.about-video__btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(233,30,99,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video__controls {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 4;
}

.about-video__ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.about-video__ctrl-btn:hover { transform: scale(1.1); }

.about-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}

.about-intro__text {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
}

.about-intro__sub {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.55;
  max-width: 640px;
  margin: 0 auto 56px;
}

.about-intro__divider {
  width: 48px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
  margin: 0 auto 56px;
}

.about-intro__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-intro__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
}

.about-intro__hl-title {
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 8px;
}

.about-intro__hl-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.5;
}

.about-intro__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}

.about-intro__tag {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(233, 30, 99, 0.06);
  color: var(--brand);
  border: 1px solid rgba(233, 30, 99, 0.12);
}

/* ===== Products Section ===== */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section__header {
  margin-bottom: 64px;
}

.section__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card__img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 12px;
}

.product-card__img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__cat {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 4px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 500;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s;
  background: rgba(233, 30, 99, 0.06);
  color: var(--text);
  border: 1px solid rgba(233, 30, 99, 0.12);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

/* ===== Spatial Lighting ===== */
.spatial {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.spatial__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.spatial__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 32px;
  z-index: 2;
  text-align: center;
}

.spatial__title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(78, 44, 29, 0.5);
  text-shadow: 0 0 40px rgba(255, 138, 101, 0.15);
  margin-bottom: 48px;
}

.spatial__float {
  width: clamp(200px, 30vw, 340px);
  transition: transform 0.3s ease-out;
  filter: drop-shadow(0 20px 60px rgba(233, 30, 99, 0.15));
}

/* ===== News ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(78, 44, 29, 0.04);
  transition: all 0.3s;
}

.news-card:hover { box-shadow: 0 8px 32px rgba(78, 44, 29, 0.08); }

.news-card__thumb {
  border-radius: 12px;
  overflow: hidden;
}

.news-card__thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-card__thumb img { transform: scale(1.05); }

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-card__tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(233, 30, 99, 0.08);
  color: var(--brand);
}

.news-card__date {
  font-size: 12px;
  opacity: 0.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.news-card:hover .news-card__title { color: var(--brand); }

.news-card__summary {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.55;
}

/* News Detail */
.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.article__image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.article__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article__body p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 24px;
}

/* ===== Contact ===== */
.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(78, 44, 29, 0.04);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
  margin-bottom: 4px;
}

.contact-form {
  padding: 32px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(78, 44, 29, 0.06);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(78, 44, 29, 0.08);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-form__textarea { resize: none; }

.contact-form__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 8px;
  display: block;
}

.contact-form__btn {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.3s;
}

.contact-form__btn:hover { opacity: 0.9; }

/* Social tags */
.social-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s;
}

.social-tag:hover { transform: scale(1.05); }

/* ===== Search Results ===== */
.search-results__empty {
  text-align: center;
  padding: 80px 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 32px 32px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  width: 180px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-btn {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-btn:hover { color: var(--accent); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer__link:hover { color: #fff; }

.footer__divider { color: rgba(255,255,255,0.15); }

.footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* QR Modal */
.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.qr-modal.active { display: flex; }

.qr-modal__box {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
  min-width: 260px;
}

.qr-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.qr-modal__close:hover { transform: scale(1.1); }

.qr-modal__img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.qr-modal__text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  color: var(--text);
}

.qr-modal__sub {
  font-size: 12px;
  margin-top: 4px;
  color: var(--text);
  opacity: 0.4;
}

/* ===== Page Header ===== */
.page-header {
  position: relative;
  height: 40vh;
  min-height: 280px;
  background: var(--dark);
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 32px;
}

.page-header__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.page-header__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
}

/* ===== Click Ripple Canvas ===== */
#ripple-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

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

/* ===== Mobile Nav Menu ===== */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(254, 246, 246, 0.98);
  backdrop-filter: blur(20px);
  z-index: 55;
  padding: 96px 32px 32px;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 32px rgba(78, 44, 29, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.nav__mobile.active {
  transform: translateX(0);
}

.nav__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(78, 44, 29, 0.06);
  transition: color 0.3s;
}

.nav__mobile-link:hover { color: var(--brand); }

.nav__mobile-dropdown {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile-dropdown a {
  font-size: 14px;
  color: var(--text);
  opacity: 0.7;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav__mobile-dropdown a:hover { color: var(--brand); opacity: 1; }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 54;
}

.nav__overlay.active { display: block; }

/* ===== Video Section (standalone) ===== */
.video-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.video-section__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 24px;
}

.video-section__player {
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 20px 60px rgba(58, 30, 17, 0.15);
}

/* Video.js custom skin */
.video-js {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}

.video-js .vjs-big-play-button {
  background: rgba(233, 30, 99, 0.8);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.video-js .vjs-big-play-button:hover {
  background: var(--brand);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-js .vjs-control-bar {
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.video-js .vjs-play-progress {
  background: var(--brand);
}

.video-js .vjs-slider {
  background: rgba(255,255,255,0.2);
}

.video-js .vjs-volume-level {
  background: var(--brand);
}

.video-js .vjs-button > .vjs-icon-placeholder::before {
  color: #fff;
}

/* ===== Partners ===== */
.partners-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.partners-section__header {
  margin-bottom: 48px;
}

.partners-section__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.partners-section__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.partners-section__subtitle {
  font-size: 15px;
  color: var(--text);
  opacity: 0.5;
}

/* Logo marquee - homepage */
.partners-marquee {
  overflow: hidden;
  margin-bottom: 40px;
}

.partners-marquee__track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.partners-marquee:hover .partners-marquee__track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(78, 44, 29, 0.06);
  transition: all 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(78, 44, 29, 0.12);
}

.partner-logo img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.partner-logo--text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Partners page - logo grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(78, 44, 29, 0.06);
  transition: all 0.3s;
  padding: 20px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(78, 44, 29, 0.1);
}

.partner-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.partner-card--text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Partner categories */
.partner-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.partner-cat {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s;
  background: rgba(233, 30, 99, 0.06);
  color: var(--text);
  border: 1px solid rgba(233, 30, 99, 0.12);
  cursor: pointer;
}

.partner-cat:hover,
.partner-cat.active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

/* CTA banner */
.partners-cta {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.partners-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  border-radius: 24px;
  background: var(--dark);
  flex-wrap: wrap;
  gap: 24px;
}

.partners-cta__text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.partners-cta__sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 4px;
}

.partners-cta__btn {
  padding: 14px 36px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.partners-cta__btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== Cooperation Page ===== */
.coop-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.coop-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,30,17,0.4) 0%, rgba(58,30,17,0.6) 100%);
  z-index: 2;
}

.coop-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  z-index: 3;
}

.coop-hero__en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.coop-hero__cn {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.coop-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 32px;
}

.coop-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.coop-section__subtitle {
  font-size: 18px;
  color: var(--text);
  opacity: 0.6;
  margin-bottom: 48px;
}

.coop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.coop-list__item {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.7;
  padding-left: 24px;
  position: relative;
}

.coop-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.coop-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(78, 44, 29, 0.08);
}

.coop-contact__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coop-contact__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.coop-contact__text {
  font-size: 14px;
  color: var(--text);
  opacity: 0.6;
  line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-layout {
  max-width: 1100px;
  margin: 64px auto 120px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-layout__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-layout__desc {
  font-size: 15px;
  opacity: 0.55;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-layout__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-layout__social-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
  margin-bottom: 16px;
}

.contact-layout__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/*pagination*/
.pagination {
    margin-bottom: 25px;
}
.pagination .jumpto {
    display: inline-block;
    margin-left: 2px;
}
.pagination .page-item{
    display: inline-block;
}
.justify-content-center{
  display: flex;
  justify-content: center;
}
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.pagination .page-link {
    color: #2c3e50;
}
.pagination .page-item.disabled .page-link {
    color: #999;
}
.pagination .jumpto input {
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #2c3e50;
    background-color: #fff;
    border: 1px solid #ddd;
    float: left;
}
.pagination .submit {
    border-radius: 0 0.25rem 0.25rem 0;
}
.pagination .page_number {
    width: 55px;
    margin-right: -1px;
}

@media only screen and (max-width: 576px) {
    .pagination .page-num {
        display: none;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro__highlights { gap: 24px; }
  .coop-contact { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-cta__inner { flex-direction: column; text-align: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-intro__highlights { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 1fr; }
  .news-card__thumb { max-width: 200px; }
  .section { padding: 80px 20px; }
  .footer__top,
  .footer__info,
  .footer__bottom { flex-direction: column; text-align: center; }
  .coop-contact { grid-template-columns: 1fr; }
  .coop-hero { height: 40vh; min-height: 280px; }
}

@media (max-width: 480px) {
  .hero__arrow { display: none; }
  .products-grid { gap: 12px; }
  .partners-grid { grid-template-columns: 1fr; }
  .nav__inner { padding: 0 20px; }
  .video-section { padding: 0 20px 60px; }
}
