/* ============================================
   3. HERO SWIPER
   ============================================ */
.hero-section {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.hero-section:hover .swiper-nav-btn {
  opacity: 1;
}

.hero-section .swiper-nav-prev {
  left: max(10px, calc((100% - var(--container)) / 2 + 40px));
}

.hero-section .swiper-nav-next {
  right: max(10px, calc((100% - var(--container)) / 2 + 40px));
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
}

.hero-bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); */
}

.hero-content {
  position: absolute;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding: 0 40px;
  box-sizing: border-box;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 80px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 44px;
}

.hero-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 8px;
}

.hero-swiper .swiper-pagination {
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s;
  margin: 0 !important;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--white);
}

/* ============================================
   4. TRUST BADGES
   ============================================ */
.trust-section {
  background: var(--gray-1);
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.trust-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.trust-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

/* ============================================
   5. BRAND STORY
   ============================================ */
.brand-story-section {
  background: var(--white);
  padding: 80px 0;
}

.brand-story-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand-story-left {
  flex: 0 0 670px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-accent-bar {
  width: 80px;
  height: 4px;
  background: var(--brand);
}

.brand-story-left h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.brand-stats {
  display: flex;
  padding-top: 8px;
}

.brand-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.brand-desc p {
  font-size: 18px;
  line-height: 29px;
  color: var(--text-secondary);
}

.brand-story-right {
  flex: 1;
  height: 360px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.brand-story-right img,
.brand-story-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.3s;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
}

.brand-story-right:hover .play-btn {
  opacity: 1;
}

.play-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   6. PRODUCT REVIEWS
   ============================================ */
.reviews-section {
  background: var(--gray-1);
  padding: 80px 0;
  overflow: hidden;
}

.reviews-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.reviews-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 8px;
}

.reviews-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 28px;
}

.reviews-header .btn-underline {
  margin-bottom: 4px;
  align-self: flex-end;
}

.reviews-track {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
}

.reviews-track:hover .swiper-nav-btn {
  opacity: 1;
}

.reviews-track .swiper-nav-prev {
  left: 20px;
}

.reviews-track .swiper-nav-next {
  right: 20px;
}

/* Swiper nav buttons */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}

.swiper-nav-btn img {
  width: 100%;
  height: 100%;
}

.swiper-nav-prev {
  left: 10px;
}

.swiper-nav-next {
  right: 10px;
}

.reviews-swiper {
  width: 100%;
  overflow: hidden;
}

.review-card {
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  transition: box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.review-card:hover {
  box-shadow: 0px 4px 16px 0px rgba(246, 0, 78, 0.2);
}

.review-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author {
  font-size: 16px;
  font-weight: 600;
  color: #1A1C1C;
}

.review-date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: #44403C;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 90px;
}

.review-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-product-name {
  font-size: 16px;
  font-weight: 600;
  color: #1A1C1C;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 50px;
}

.review-thumbnails {
  display: flex;
  gap: 8px;
}

.thumb {
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1;
}

/* ============================================
   7. RECOMMENDED PRODUCTS
   ============================================ */
.products-section {
  background: var(--white);
  padding: 80px 0;
}

.products-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.products-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
}

.products-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.products-header .btn-underline {
  margin-bottom: 4px;
  align-self: flex-end;
}

.products-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  flex: 0 0 calc(20% - 16px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(246, 0, 78, 0.2);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 0;
  background: #E5E7EB;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  height: 24px;
  line-height: 24px;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: #E5E7EB;
}

.product-img-wrap .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.product-card:hover .product-img-wrap .product-img {
  transform: scale(1.2);
}

/* Favorite button */
.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 15%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.fav-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card:hover .fav-btn,
.knowledge-card:hover .fav-btn,
.newsletter-card:hover .fav-btn {
  opacity: 1;
}

.discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 12px 12px;
}

.product-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(168, 162, 158, 1);
  margin-bottom: -4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-des {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(26, 28, 28, 1);
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 63px;
}

.product-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.price-current {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
}

.price-current .price-sup {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}

.price-original {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
  line-height: 32px;
}

.product-card--dark .product-info {
  background: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
}

.product-card--dark .product-name {
  color: rgba(168, 162, 158, 1);
}

.product-card--dark .product-des {
  color: var(--text-secondary);
}

.product-card--dark .price-current {
  color: var(--black);
}

.product-card--dark .price-original {
  color: rgba(0, 0, 0, 0.5);
}

.products-section .product-card {
  gap: 20px;
}

/* ============================================
   8. PRODUCT CLASSIFICATION
   ============================================ */
.classification-section {
  background: var(--gray-1);
  padding: 80px 0 120px;
}

.classification-section>h2 {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 40px;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  text-align: center;
}

.classification-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.class-row {
  display: flex;
  gap: 24px;
}

.class-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.class-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.class-card:hover::before {
  transform: scale(1.2);
}

.class-card--large {
  flex: 0 0 calc(67% - 12px);
  aspect-ratio: 792/500;
}

.class-card--small {
  flex: 0 0 calc(33% - 12px);
  aspect-ratio: 384/500;
}

.class-card--third {
  flex: 1;
  aspect-ratio: 384/400;
}

.class-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.85) 100%);
  transition: background 0.3s;
}

.class-card:hover .class-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.class-label {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.class-label h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1;
}

.class-badge {
  position: absolute;
  top: 6%;
  left: 5%;
  width: 13.5%;
}

.class-badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   9. SPECIAL OFFERS
   ============================================ */
.offers-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
    url('../images/dark-section-bg.png') center / cover no-repeat;
  padding: 80px 0;
}

.offers-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.offers-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: -30px;
}

.offers-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 44px;
  width: 100%;
}

.offers-des {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  /* line-height: 1; */
  letter-spacing: 0px;
}

.offers-header-row .btn-underline {
  margin-bottom: 4px;
  align-self: flex-end;
}

.offers-shipping-bar {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 40px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 24px;
}

.offers-products {
  width: 100%;
  position: relative;
}

.offers-products:hover .swiper-nav-btn {
  opacity: 1;
}

.offers-products .swiper-nav-btn {
  top: 35%;
}

.offers-products .swiper-nav-prev {
  left: -20px;
}

.offers-products .swiper-nav-next {
  right: -20px;
}

.offers-swiper {
  overflow: hidden;
}

.offers-swiper .swiper-wrapper {
  align-items: stretch;
}

.offers-pagination {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  position: static !important;
  width: 100% !important;
  bottom: auto !important;
}

.offers-pagination .swiper-pagination-bullet {
  width: 16px !important;
  height: 4px !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s !important;
}

.offers-pagination .swiper-pagination-bullet-active {
  background: var(--white) !important;
  width: 48px !important;
}

/* ============================================
   10. BRAND GRID MARQUEE
   ============================================ */
.brand-grid-section {
  background: var(--gray-2);
  padding: 80px 0 100px;
  overflow: hidden;
}

.brand-grid-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.brand-grid-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
}

.brand-grid-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.brand-grid-section {
  position: relative;
}

.brand-grid-stat {
  position: absolute;
  top: 80px;
  right: calc((100% - var(--container)) / 2 + 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.brand-grid-stat .stat-number {
  color: var(--brand);
  font-size: 48px;
  line-height: 48px;
  font-weight: 600;
}

.brand-grid-stat .stat-label {
  font-size: 14px;
  line-height: 20px;
  color: rgba(68, 71, 72, 1);
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.marquee-track--left {
  animation: marquee-left 30s linear infinite;
}

.marquee-track--right {
  animation: marquee-right 35s linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  width: 256px;
  height: 128px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: var(--black);
  transition: box-shadow 0.3s;
}

.brand-item__name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  transition: color 0.3s;
}

.brand-item__sub {
  position: absolute;
  bottom: 12px;
  font-size: 9px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}

.brand-item:hover {
  box-shadow: 0 4px 16px rgba(246, 0, 78, 0.2);
}

.brand-item:hover .brand-item__name {
  color: var(--brand);
}

/* ============================================
   11. MODEL / CTA SECTION
   ============================================ */
.model-section {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.model-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.model-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

.model-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--container);
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
}

.model-content>* {
  max-width: 560px;
}

.model-tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.model-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: -1.8px;
}

.model-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 0 32px;
}

.model-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.model-feature-icon {
  flex-shrink: 0;
}

.model-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.model-feature p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   12. PRODUCT KNOWLEDGE
   ============================================ */
.knowledge-section {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

.knowledge-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.knowledge-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
}

.knowledge-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.knowledge-track {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
}

.knowledge-track:hover .swiper-nav-btn {
  opacity: 1;
}

.knowledge-track .swiper-nav-prev {
  left: 20px;
}

.knowledge-track .swiper-nav-next {
  right: 20px;
}

.knowledge-swiper {
  width: 100%;
  overflow: hidden;
}

.knowledge-card {
  display: block;
  aspect-ratio: 379/300;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  transition: transform 0.3s;
}

.knowledge-card:hover {
  transform: scale(1.02);
}

.knowledge-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.knowledge-label {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
}

.knowledge-label h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 24px;
}

/* ============================================
   13. KNOWLEDGE SECTION 2
   ============================================ */
.knowledge-section-2 {
  background: #F3F4F5;
  padding: 80px 0 100px;
}

.knowledge-2-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.knowledge-2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.knowledge-2-header .btn-underline {
  margin-bottom: 4px;
  align-self: flex-end;
}

.knowledge-2-header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 8px;
}

.knowledge-2-header p {
  font-size: 18px;
  color: #44474C;
}

.knowledge-2-grid {
  display: flex;
  gap: 24px;
}

/* PC: disable swiper, show as grid */
.newsletter-swiper {
  width: 100%;
  overflow: visible;
}

.newsletter-swiper .swiper-wrapper {
  display: flex;
  gap: 24px;
}

.newsletter-swiper .swiper-slide {
  flex: 1 1 0;
  min-width: 0;
}

.newsletter-pagination {
  display: none;
}

.newsletter-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}

.newsletter-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-card__img {
  aspect-ratio: 312/175;
  overflow: hidden;
}

.newsletter-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.newsletter-card:hover .newsletter-card__img img {
  transform: scale(1.2);
}

.newsletter-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.newsletter-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #535353;
}

.newsletter-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #191C1D;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 85px;
}

.newsletter-card__desc {
  font-size: 14px;
  line-height: 22.75px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 70px;
}

.newsletter-card__link {
  font-size: 14px;
  font-weight: 600;
  color: #191C1D;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ============================================
   14. FAQ
   ============================================ */
.faq-section {
  background: var(--white);
  padding: 28px 40px;
}

.faq-inner {
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-heading {
  text-align: center;
}

.faq-heading h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 198, 204, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: #191C1D;
  line-height: 28px;
  text-align: left;
  gap: 12px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item--open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

/* ============================================
   15. NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, rgba(178, 29, 204, 1) 0%, rgba(255, 68, 130, 1) 100%);
  padding: 32px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.newsletter-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.newsletter-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 44px;
}

.newsletter-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  width: 547px;
  height: 56px;
}

.newsletter-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: 1px solid var(--white);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0 20px;
  font-size: 18px;
  color: var(--white);
  font-family: var(--font);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  border-color: var(--white);
}

.newsletter-btn {
  width: 120px;
  height: 100%;
  background: var(--white);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.newsletter-btn img {
  width: 31px;
  height: auto;
}

.newsletter-btn:hover {}

/* ============================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {

  .trust-inner {
    padding: 20px 24px;
    gap: 16px;
  }

  .brand-story-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }

  .brand-story-left {
    flex: none;
    width: 100%;
  }

  .brand-story-right {
    flex: none;
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

  /* 移动端标题统一 font-weight: 600 */
  .reviews-header h2,
  .products-header h2,
  .classification-section>h2,
  .brand-grid-header h2,
  .knowledge-header h2,
  .knowledge-2-header h2,
  .offers-title,
  .newsletter-text h2,
  .brand-story-left h2 {
    font-weight: 600 !important;
  }

  /* Hero – 760px tall on mobile per Figma */
  .hero-section {
    height: 760px;
  }

  .hero-content {
    left: 0;
    right: 0;
    top: auto;
    bottom: 60px;
    transform: none;
    padding: 0 24px;
    max-width: none;
    text-align: center;
    align-items: stretch;
    gap: 32px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1;
  }

  .hero-content p {
    font-size: 12px;
    line-height: 1;
  }

  .hero-buttons {
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    height: 44px;
    font-size: 12px;
    backdrop-filter: none
  }

  /* Trust badges – 2×2 grid (178px items, gap 20px, padding 24px 32px) */
  .trust-text h4 {
    font-size: 14px;
  }

  .trust-inner {
    flex-wrap: wrap;
    padding: 24px 32px;
    gap: 20px;
    justify-content: flex-start;
  }

  .trust-item {
    flex: 0 0 calc(50% - 10px);
    flex-direction: column;
    text-align: left;
    gap: 10px;
    align-items: start;
  }

  /* Brand story */
  .brand-story-section {
    padding: 40px 0;
  }

  .brand-story-inner {
    padding: 0 24px;
    gap: 32px;
    flex-direction: column;
  }

  .brand-story-left {
    flex: none;
    width: 100%;
    display: contents;
  }

  .brand-accent-bar {
    display: none;
  }

  .brand-story-left h2 {
    order: 1;
    font-size: 24px;
    line-height: 1;
    line-height: 30px;
  }

  .brand-story-right {
    flex: none;
    width: 100%;
    height: 500px;
    order: 2;
  }

  .brand-desc {
    order: 3;
  }

  .brand-desc p {
    font-size: 14px;
    line-height: 24px;
  }

  .brand-story-left .btn-underline {
    order: 4;
    align-self: flex-start;
    margin-top: -12px;
  }

  .brand-stats {
    order: 5;
    padding-top: 0;
    width: 100%;
  }

  .stat-number {
    font-size: 24px;
    line-height: 40px;
  }

  .stat-label {
    color: var(--text-secondary-mb);
  }

  /* Reviews */
  .review-product-name {
    line-height: 1.2;
    height: 39px;
  }

  .review-date {
    font-weight: 300;
  }

  .review-card blockquote {
    font-size: 14px;
    line-height: 1;
    -webkit-line-clamp: 4;
    height: 56px;
  }

  .reviews-header h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
  }

  .reviews-section {
    padding: 40px 0;
    position: relative;
    padding-bottom: 93px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .reviews-header .btn-underline {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .reviews-track {
    padding: 0 24px;
  }

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

  .reviews-header p {
    font-size: 14px;
    color: var(--text-secondary-mb);
    line-height: 1;
  }

  /* Recommended products – 2-col grid, gap 12px */
  .products-section {
    padding: 40px 24px;
    position: relative;
    padding-bottom: 80px;
  }

  .products-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .products-header h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .products-header p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary-mb);
  }

  .products-header .btn-underline {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .products-grid {
    flex-wrap: wrap;
    gap: 12px;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .product-card {
    flex: 0 0 calc(50% - 6px);
  }

  .products-section .product-card {
    gap: 12px;
  }

  .product-card--dark .product-info {
    padding-top: 12px;
  }

  .product-info {
    padding: 0 8px 8px;
    gap: 8px;
  }

  .product-name {
    font-size: 10px;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .product-des {
    font-size: 12px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
  }

  .price-current {
    font-size: 16px;
    line-height: 24px;
  }

  .price-original {
    font-size: 12px;
    line-height: 24px;
  }

  .product-badge {
    font-size: 10px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
  }

  /* Product classification */
  .classification-section {
    padding: 40px 24px;
  }

  .classification-section>h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .classification-grid {
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .class-row--1 {
    display: contents;
  }

  .class-row--2 {
    display: contents;
  }

  .class-row--3 {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .class-row--1 .class-card--large {
    flex: none;
    width: 100%;
    aspect-ratio: 393/284;
    order: 1;
  }

  .class-row--2 .class-card--large {
    flex: none;
    width: 100%;
    aspect-ratio: 393/284;
    order: 2;
  }

  .class-row--1 .class-card--small {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 192/250;
    order: 3;
  }

  .class-row--2 .class-card--small {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 192/250;
    order: 3;
  }

  .class-row--3 {
    order: 4;
  }

  .class-card--third {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 125/130;
  }

  .class-label {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .class-label h3 {
    font-size: 16px;
  }

  .class-badge {
    display: block;
  }

  /* btn-underline on mobile: always show red line, 12px font */
  .brand-story-left .btn-underline,
  .products-header .btn-underline,
  .reviews-header .btn-underline,
  .offers-header-row .btn-underline,
  .knowledge-2-header .btn-underline {
    font-size: 12px;
  }

  .brand-story-left .btn-underline::before,
  .products-header .btn-underline::before,
  .reviews-header .btn-underline::before,
  .offers-header-row .btn-underline::before,
  .knowledge-2-header .btn-underline::before {
    transform: scaleX(0);
  }

  .brand-story-left .btn-underline::after,
  .products-header .btn-underline::after,
  .reviews-header .btn-underline::after,
  .offers-header-row .btn-underline::after,
  .knowledge-2-header .btn-underline::after {
    transform: scaleX(1);
  }

  /* Favorite button & play button always visible on mobile */
  .fav-btn {
    opacity: 1;
  }

  .play-btn {
    opacity: 1;
  }

  .play-btn.is-playing {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Special offers */
  .offers-section {
    padding: 0;
  }

  .offers-inner {
    gap: 0;
    padding: 40px 24px;
    position: relative;
    padding-bottom: 93px;
  }

  .offers-title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
  }

  .offers-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .offers-des {
    font-size: 14px;
    font-weight: 300;
  }

  .offers-des br {
    display: none;
  }

  .offers-header-row .btn-underline {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .offers-shipping-bar {
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    margin-bottom: 32px;
    gap: 4px
  }

  .offers-shipping-bar img {
    width: 28px;
    height: 28px;
  }

  .offers-shipping-bar .offer-shipping-fr {
    display: none;
  }

  .offers-products {
    width: 100%;
  }

  .offers-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transform: none !important;
  }

  .offers-swiper .swiper-slide {
    width: calc(50% - 6px) !important;
    flex-shrink: 0;
    margin: 0 !important;
  }

  .offers-swiper .swiper-slide:nth-child(n+5) {
    display: none;
  }

  .offers-pagination {
    display: none !important;
  }

  /* Brand grid marquee */
  .brand-grid-section {
    padding: 40px 0 60px;
  }

  .brand-grid-header {
    padding: 0 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 32px;
  }

  .brand-grid-header h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 44px;
    margin-bottom: 8px;
  }

  .brand-grid-header p {
    font-size: 14px;
    color: var(--text-secondary-mb);
  }

  .brand-grid-stat {
    position: static;
    align-items: center;
    padding: 32px 0 0;
  }

  .brand-grid-stat .stat-label {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand);
    font-size: 12px;
  }

  .brand-item {
    width: 120px;
    height: 60px;
    font-size: 13px;
  }

  .brand-item__sub {
    font-size: 8px;
  }

  .brand-item__name {
    font-size: 14px;
    line-height: 18px;
    height: 18px;
    margin-bottom: 5px;
  }

  .brand-grid-stat .stat-number {
    font-size: 28px;
    line-height: 40px;
    height: 40px;
    font-weight: 600;
  }

  /* Model / CTA – 800px tall, content overlaid at ~44% down */
  .model-section {
    height: 800px;
    position: relative;
  }

  .model-bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .model-bg::after {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.98) 85%);
  }

  .model-content {
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    background: none;
    padding: 0 24px 60px;
    gap: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateX(0);
  }

  .model-content .model-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 0;
  }

  .model-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .model-content .btn-brand {
    height: 48px;
    font-size: 16px;
    line-height: 48px;
    width: 100%;
  }

  .model-features {
    /* padding: 0; */
  }

  /* Product knowledge – horizontal scroll, cards 296px tall (Figma: gap 10px, height 296px) */
  .knowledge-section {
    padding: 40px 24px 60px;
  }

  .knowledge-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .knowledge-header h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
  }

  .knowledge-header p {
    font-size: 14px;
    color: var(--text-secondary-mb);
    text-align: center;
  }

  .knowledge-track {
    padding-left: 0;
    padding-right: 0;
  }

  .knowledge-card {
    aspect-ratio: 379/300;
  }

  /* Knowledge section 2 */
  .knowledge-section-2 {
    padding: 40px 0 40px;
  }

  .knowledge-2-inner {
    padding: 0 16px;
    position: relative;
  }

  .knowledge-2-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  /* .knowledge-2-header .btn-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  } */
  .knowledge-2-header .btn-underline {
    margin: 20px auto 0;
  }

  .knowledge-2-header h2 {
    font-size: 24px;
  }

  .knowledge-2-header p {
    font-size: 14px;
    color: var(--text-secondary-mb);
  }

  .knowledge-2-grid {
    flex-direction: column;
    gap: 16px;
  }

  .newsletter-swiper {
    overflow: hidden;
  }

  .newsletter-swiper .swiper-wrapper {
    gap: 0;
  }

  .newsletter-swiper .swiper-slide {
    flex: none;
    width: 100%;
  }

  .newsletter-pagination {
    display: flex !important;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    position: static !important;
  }

  .newsletter-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 2px;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: all 0.3s;
    margin: 0 !important;
  }

  .newsletter-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--black);
  }

  .newsletter-card {
    flex: none;
  }

  .newsletter-card .fav-btn {
    width: 8%;
  }

  .newsletter-card__img {
    aspect-ratio: 312/175;
  }

  .newsletter-card__body {
    padding: 24px;
  }

  .newsletter-card__body .newsletter-card__title {
    -webkit-line-clamp: 2;
    height: 56px;
  }

  .newsletter-card__body .newsletter-card__desc {
    -webkit-line-clamp: 2;
    height: 46px;
  }


  .newsletter-content {
    width: 100%;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    width: calc(100% - 100px)
  }

  .newsletter-btn {
    width: 100px;
  }

  /* FAQ */
  .faq-section {
    padding: 40px 24px;
  }

  .faq-inner {
    width: 100%;
    padding: 0;
    gap: 0
  }

  .faq-heading h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 44px;
    margin-bottom: 8px;
  }

  .faq-item {
    border-bottom: none
  }

  .faq-question {
    padding-bottom: 12px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  /* Newsletter – Figma: padding 32px 0 48px on the outer frame */
  .newsletter-section .newsletter-form {
    height: 48px;
  }

  .newsletter-section {
    padding: 32px 24px 48px;
  }

  /* .newsletter-form { width: calc(100% - 48px); max-width: 392px; } */
  .newsletter-text h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .newsletter-text p {
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {

  /* Trust badges may overflow on very small screens – allow narrower items */
  .trust-item {
    flex: 0 0 calc(50% - 10px);
  }

  /* Knowledge cards slightly narrower */
  .knowledge-card {
    aspect-ratio: 379/300;
  }
}