/** Shopify CDN: Minification failed

Line 513:0 Unexpected "}"
Line 3138:12 Expected identifier but found whitespace
Line 3138:13 Unexpected "translateY("

**/
/* Base styles */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.aaagru-theme {
  background: #FFFFFF !important;
}

.og-container {
  font-family: 'Inter', sans-serif;
  color: #484848;
  background: transparent;
  line-height: 1.45;
  box-sizing: border-box;
}

.og-container * {
  box-sizing: inherit;
}

/* Gallery Modal */
.og-gallery-modal {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.85) !important;
  z-index: 100000 !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.og-gallery-modal.is-open {
  display: flex !important;
  opacity: 1 !important;
}
.og-gallery-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}
.og-gallery-modal__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
  display: block;
}
.og-gallery-modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
@media (max-width: 768px) {
  .og-gallery-modal__close {
    top: -40px;
    right: 0;
  }
}

/* Typography */
.og-container h1, .og-container h2, .og-container h3, .og-container h4, .og-container h5, .og-container p {
  margin: 0;
}

/* Buttons */
.og-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.og-btn--small {
  padding: 8px 12px;
  font-size: 16px;
}
.og-btn--primary {
  background: #fff835;
  color: #484848;
}
.og-btn--dark {
  background: #484848;
  color: #fff;
}
.og-btn--gray {
  background: rgba(72,72,72,0.7);
  color: #fff;
}
.og-btn--outline {
  border: 2px solid rgba(72,72,72,0.15);
  background: transparent;
  color: #484848;
}


/* Hero Section */
.og-hero {
  position: relative;
  min-height: 100vh; /* Fill the entire height of the viewport */
  display: flex;
  overflow: hidden;
  z-index: 1; /* 降低桌面端大图层级，确保不遮挡导航栏 */
}
.og-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0;
  width: 100%;
}
.og-hero__content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.og-hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-color, #484848);
}
.og-hero__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--text-color, #484848);
  opacity: 0.8;
}
.og-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Carousel */
.og-hero__slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.og-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  align-items: flex-end;
  padding: 120px 80px 160px;
}

.og-hero__slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 5 !important;
  display: flex !important;
}

.og-hero__media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.og-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.og-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.og-hero__media--video {
  overflow: hidden;
  background: #000;
}

.og-hero__video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.og-hero__video {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* Dots */
.og-hero__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.og-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.og-hero__dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* Arrows */
.og-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
  padding: 0;
}

.og-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #00BBDF;
  opacity: 1;
}

.og-hero__arrow--prev {
  left: 24px;
}

.og-hero__arrow--next {
  right: 24px;
}

/* Trust Badges / Logos */
.og-logos {
  height: 220px;
  padding: 0 80px;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.og-logos__track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  height: 100%;
  align-items: center;
  animation: og-marquee-scroll 50s linear infinite; /* 速度减慢一倍，从 25s 改为 50s */
}
.og-logos__track:hover {
  animation-play-state: paused;
}
.og-logos__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  gap: 120px; /* Increased gap for better spacing */
  padding-right: 120px; /* Must match the gap for seamless transition */
  flex-shrink: 0;
}
.og-logo-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0; /* Remove padding to ensure gap is controlled only by .og-logos__container gap */
  width: auto;
}
.og-logo-item img {
  width: 170px;
  height: 141px; /* Uniform height for all logos */
  object-fit: contain;
}
.og-logo-item span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00bbdf;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
}
.og-logo-item--has-image span {
  display: block;
}

@keyframes og-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ritual Section */
.og-ritual {
  background: rgba(72,72,72,0.04);
  padding: 40px 64px;
  text-align: center;
}
.og-ritual__title {
  font-size: 40px;
  color: #00bbdf;
  font-weight: 600;
}

/* Products Scroll */
.og-products {
  padding: 80px 64px 120px;
}
.og-products__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.og-products__scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}
.og-products__scroll::-webkit-scrollbar {
  display: none;
}
.og-product-card {
  width: calc((100% - 96px) / 4);
  min-width: calc((100% - 96px) / 4);
  max-width: calc((100% - 96px) / 4);
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 448px;
  height: auto;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  will-change: transform;
  text-decoration: none; /* Add this to remove default link underline */
  cursor: pointer; /* Add this to show hand cursor on the entire card */
  color: inherit; /* Ensure text color doesn't change to default link color */
}
.og-product-card__img-wrapper {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  height: auto;
  flex-shrink: 0;
  border-radius: 12.75px;
  overflow: hidden;
  margin: 0 auto;
}
.og-product-card__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
}
.og-product-card__info {
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-grow: 1;
}
.og-product-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #484848;
  letter-spacing: -0.02em;
  margin: 0;
}
.og-product-card__price-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.og-product-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #00bbdf;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.og-product-card__coming-soon {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 187, 223, 0.5);
  letter-spacing: -0.005em;
  margin: 0;
}
.og-product-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(72,72,72,0.55);
  letter-spacing: -0.005em;
  margin: 0;
}
.og-product-card__btn-wrapper {
  margin-top: 6px;
  width: 100%;
}
.og-product-card .og-btn--small {
  height: 40px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  background: #484848;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s ease;
}
.og-product-card .og-btn--small:hover {
  background: #333333;
}
}
.og-product-card:hover {
  z-index: 1;
}
.og-product-card:hover .og-product-card__img-wrapper img {
  transform: scale(1.08);
}

/* Synergy Section */
.og-synergy {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 64px 64px 120px;
  width: 100%;
  min-height: 539px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E8F9FA 100%);
  box-sizing: border-box;
}
.og-synergy__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 1152px;
}
.og-synergy__track {
  flex: 2;
}
.og-synergy__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px 31px 0px 27px;
  flex: 1;
}
.og-synergy__title-mobile {
  display: none;
}
.og-synergy__header h2 {
  width: 100%;
  max-width: 500px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: rgba(72, 72, 72, 0.4);
  margin: 0;
}
.og-synergy__list-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.og-synergy__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 100%;
}
.og-synergy__list--duplicate {
  display: none;
}
/* Hide scrollbar for the list */
.og-synergy__list::-webkit-scrollbar {
  display: none;
}
.og-synergy__list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.og-synergy-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 16px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: none;
  border-radius: 16px;
  box-sizing: border-box;
  border: 2px solid #00BBDF;
}
.og-synergy-item__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 12px;
  margin-bottom: 0;
}
.og-synergy-item__header h3 {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.015em;
  color: #484848;
  margin: 0;
}
.og-synergy-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.og-synergy-item__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.og-synergy-item p {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.55);
  margin: 0;
  max-width: 573px;
}

/* Built Section */
.og-built-section {
  width: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #D9F7FD 100%);
  padding: 40px 0 40px;
}
.og-built-container {
  max-width: 1284px;
  margin: 0 auto;
}
.og-built-features-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 0 64px;
}
.og-built-feature-item-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.og-built-feature-icon-wrapper {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border: 1px solid #00BBDF;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 187, 223, 0.05);
}
.og-built-feature-icon-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.og-built-feature-icon-wrapper svg {
  width: 64px;
  height: 64px;
}
.og-built-feature-text-horizontal {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.6);
  max-width: 170px;
}

@media screen and (max-width: 1200px) {
  .og-built-features-horizontal {
    gap: 24px;
  }
}

@media screen and (max-width: 991px) {
  .og-built-features-horizontal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 16px;
  }
  .og-built-feature-item-horizontal {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 480px) {
  .og-built-feature-item-horizontal {
    width: 100%;
  }
}

/* Pull Quote */
.og-quote {
  padding: 80px 64px 60px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.og-quote__inner {
  max-width: 1152px;
  width: 100%;
}
.og-quote__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
.og-quote__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #484848;
  max-width: 847px;
  margin: 0;
}
.og-quote__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.015em;
  color: rgba(0, 0, 0, 0.45);
  max-width: 897px;
  margin: 0;
}

/* Features Grid */
.og-features-grid {
  padding: 40px 64px 80px;
  background: linear-gradient(180deg, #D9F7FD 0%, #FFFFFF 100%);
}
.og-features-grid__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.og-feature-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 288.5px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
}
.og-feature-card--reverse {
  flex-direction: row-reverse !important;
}
.og-feature-card--reverse .og-feature-card__text {
  text-align: left;
}
.og-feature-card__text {
  flex: 1;
  max-width: 645px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 8px;
}
.og-feature-card__title-main {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  color: #484848;
  margin: 0;
  align-self: stretch;
}
.og-feature-card__title-accent {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  color: #484848;
  margin: 0;
  align-self: stretch;
}
.og-feature-card__text p {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.55);
  margin: 8px 0 0;
  max-width: 513px;
}
.og-feature-card__img {
  width: 507px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 24px; /* Restored padding for desktop */
  box-sizing: border-box;
}
.og-feature-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* Restored to contain for desktop */
  transform: scale(var(--desktop-img-scale, 1)) translateY(var(--desktop-img-offset-y, 0));
  transition: transform 0.3s ease;
}

/* Split Sections */
.og-split {
  padding: 52px 64px 23px;
}
.og-split__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
}
.og-split--reverse .og-split__inner {
  flex-direction: row-reverse;
}
.og-split__content {
  flex: 1;
  max-width: 490px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.og-split__content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #484848;
}
.og-split__content p {
  font-size: 18px;
  color: rgba(72,72,72,0.55);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.og-split__image {
  flex: none;
  width: 600px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}
.og-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Split Section V2 (Match Image 1 & Alignment) */
.og-split-v2 {
  /* Increased gap from the section above */
  padding: 0;
  background: #00BBDF; /* Match left side background to eliminate any potential hairline gaps */
  width: 100%;
}
.og-split-v2__inner {
  max-width: none;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
}
.og-split-v2--reverse .og-split-v2__inner {
  flex-direction: row-reverse !important;
}
.og-split-v2--reverse .og-split-v2__content {
  align-items: flex-start;
}
.og-split-v2__content {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-items: flex-start;
  background: #00BBDF;
  border-radius: 0;
  padding: 80px 64px;
}
.og-split-v2__content .og-btn {
  width: auto;
  min-width: 156px;
  height: 50px;
  padding: 12px 24px;
  gap: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.45;
  letter-spacing: -0.005em;
  border-radius: 12px; /* Matched with Hero button radius */
}
.og-split-v2__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.og-split-v2__title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.02em;
}
.og-split-v2__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.02em;
}
.og-split-v2__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.005em;
}
.og-split-v2__desc p {
  margin-bottom: 16px;
}
.og-split-v2__desc p:last-child {
  margin-bottom: 0;
}
.og-split-v2__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  overflow: hidden;
}
.og-split-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .og-split-v2__content {
    flex: 0 0 45%;
    padding: 64px 40px;
  }
}

@media (max-width: 768px) {
  .og-split-v2__inner {
    flex-direction: column !important;
  }
  .og-split-v2__content {
    flex: none;
    width: 100%;
    padding: 48px 24px;
  }
  .og-split-v2__image {
    flex: none;
    width: 100%;
    height: 400px;
  }
}

/* Gallery */
.og-gallery {
  padding: 83px 64px 120px;
}
.og-gallery__inner {
  max-width: 1152px;
  margin: 0 auto;
}
.og-gallery__header {
  text-align: left;
  margin-bottom: 64px;
}
.og-gallery__header h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #484848;
}
.og-gallery__header p {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(72,72,72,0.55);
  letter-spacing: -0.005em;
}
.og-gallery__grid {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.og-gallery__track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding-right: 32px;
  animation: og-marquee-scroll 45s linear infinite;
}
.og-gallery__track.is-paused {
  animation-play-state: paused;
}
.og-gallery__group {
  display: flex;
  gap: 32px;
}
.og-gallery__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 353px;
  flex-shrink: 0;
}
.og-gallery__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* Knowledge Base */
.og-knowledge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px 64px 120px;
  gap: 64px;
  width: 100%;
  box-sizing: border-box;
}
.og-knowledge__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 1280px;
  flex: none;
  order: 10;
  align-self: stretch;
  flex-grow: 0;
}
.og-knowledge__image {
  width: 624px;
  height: 472px;
  border-radius: 16px;
  overflow: hidden;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.og-knowledge__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.og-knowledge__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 48px;
  width: 464px;
  flex: none;
  order: 1;
  flex-grow: 1;
}
.og-knowledge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 464px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.og-knowledge__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  color: #484848;
  margin: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.og-knowledge__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  display: flex;
  align-items: center;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.55);
  margin: 0;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Footer */
.og-footer {
  padding: 0 64px;
  background: #C1F5F7;
  width: 100%;
  box-sizing: border-box;
}
.og-footer__inner {
  max-width: 1152px;
  margin: 0 auto;
  border-top: 1px solid rgba(72, 72, 72, 0.1);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
}
.og-footer__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
  margin-bottom: 80px;
  order: 1;
}
.og-footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  flex: none;
  width: 385px;
}
.og-footer__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: #484848;
  margin: 0;
}
.og-footer__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.55);
  margin: 0;
  max-width: 395px;
}
.og-footer__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.og-social-link {
  width: 24px;
  height: 24px;
  color: rgba(72, 72, 72, 0.45);
  transition: color 0.3s ease;
}
.og-social-link:hover {
  color: #484848;
}
.og-social-link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.og-footer__legal {
  border: 1px solid rgba(72, 72, 72, 0.5);
  border-radius: 13px;
  padding: 33px 0 35px 11px;
  width: 385px;
  box-sizing: border-box;
}
.og-footer__legal p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.5);
  margin: 0;
}

.og-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 75px;
  flex: 1;
}
.og-footer__links-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 155px;
}
.og-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
}
.og-footer__header {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: #484848;
  margin: 0;
  padding-bottom: 16px;
}
.og-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.og-footer__list a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: rgba(72, 72, 72, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}
.og-footer__list a:hover {
  color: #484848;
}

.og-footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.og-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-top: -260px;
  order: 2;
}
.og-newsletter__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 145%;
  color: #484848;
  margin: 0;
}
.og-newsletter__text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  color: rgba(72, 72, 72, 0.55);
  margin: 0;
}
.og-newsletter__form {
  width: 100%;
}
.og-newsletter__input-wrapper {
  position: relative;
  width: 100%;
  max-width: 660px;
  height: 56px;
}
.og-newsletter__privacy {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 145%;
  color: rgba(72, 72, 72, 0.5);
  margin-top: 10px;
}
.og-newsletter__input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid rgba(72, 72, 72, 0.5);
  border-radius: 13px;
  padding: 0 60px 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #484848;
  box-sizing: border-box;
}
.og-newsletter__input::placeholder {
  color: rgba(72, 72, 72, 0.4);
}
.og-newsletter__submit {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 46px;
  height: 46px;
  background: rgba(72, 72, 72, 0.15);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.og-newsletter__submit:hover {
  background: rgba(72, 72, 72, 0.25);
}
.og-newsletter__submit svg {
  width: 27px;
  height: auto;
}
.og-newsletter__message {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.og-newsletter__message--error {
  color: #d0021b;
}
.og-newsletter__message--success {
  color: #484848;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .og-product-card {
    width: calc((100% - 64px) / 3);
    min-width: calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
  }
  .og-synergy__inner {
    flex-direction: column;
  }
  .og-features-grid__inner {
    flex-direction: column;
  }
  .og-split__inner, .og-split--reverse .og-split__inner {
    flex-direction: column;
  }
  .og-gallery__col {
    width: 300px;
  }
  .og-knowledge {
    padding: 71px 44px 68px;
    gap: 45px;
  }
  .og-knowledge__inner {
    gap: 45px;
    max-width: 800px;
  }
  .og-knowledge__image {
    width: 398px;
    height: 336px;
    border-radius: 12.2653px;
  }
  .og-knowledge__content {
    width: 269px;
    gap: 30px;
  }
  .og-knowledge__text {
    width: 269px;
  }
  .og-knowledge__title {
    font-size: 32px;
  }

  /* Hero Tablet */
  .og-hero {
    min-height: 600px; /* 平板端给一个固定高度，防止绝对定位导致高度塌陷 */
  }
  .og-hero__slide {
    padding: 120px 48px 80px;
    position: absolute; /* 修正为绝对定位，确保幻灯片重叠 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    align-items: flex-end;
  }
  .og-hero__content {
    max-width: 600px;
  }
  .og-hero__title {
    font-size: 44px;
  }
  .og-hero__subtitle {
    font-size: 20px;
  }

  /* Synergy Tablet */
  .og-synergy {
    padding: 80px 44px;
  }
  .og-synergy__title-desktop {
    display: none;
  }
  .og-synergy__title-mobile {
    display: block;
  }
  .og-synergy__header h2 {
    font-size: 28px;
  }
  .og-synergy-item h3 {
    font-size: 18px;
  }

  /* Footer Tablet */
  .og-footer__main {
    gap: 60px;
  }
  .og-footer__links-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* 确保导航栏始终在最上层且可见 */
  .header-wrapper {
    position: relative; /* 必须设置定位，z-index 才会生效 */
    z-index: 10000 !important;
    display: block !important;
    background: #00BBDF !important;
  }

  .og-hero {
    min-height: 85vh !important; /* 强制覆盖 tablet 的 min-height: auto */
    display: flex;
    padding: 0;
    align-items: stretch;
    margin-top: 0; /* 确保不因为导航栏定位改变而产生间隙 */
    z-index: 1 !important; /* 关键：强制降低首页大图的层级，确保不遮挡导航栏 */
  }
  .og-hero__slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 32px 100px; /* 调整内边距，为底部留出空间 */
    align-items: flex-end; /* 关键：改为底部对齐 */
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    display: flex !important;
  }
  .og-hero__slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
  }
  .og-hero__inner {
    max-width: 100%;
    margin: 0;
    z-index: 3;
  }
  .og-hero__content {
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    padding: 24px 24px 24px 20px;
    margin: 0;
    max-width: 90%;
    border-left: 4px solid #00BBDF;
    background: rgba(255, 255, 255, 0.02); /* 稍微降低一点透明度 */
    backdrop-filter: blur(1px); /* 将模糊度从 4px 降至 2px，更加清透 */
    -webkit-backdrop-filter: blur(1px);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* 添加极淡阴影增加层次感 */
  }
  .og-hero__title {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3); /* 恢复轻微文字阴影，确保在浅色背景下也清晰 */
    word-break: break-word;
  }
  .og-hero__subtitle {
    font-size: 15px;
    line-height: 1.4;
    color: #FFFFFF;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    opacity: 0.95;
    max-width: 100%;
    margin: 0;
    word-break: break-word;
  }
  .og-hero__actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }
  .og-hero__actions .og-btn {
    width: auto; /* 按钮不再撑满 */
    min-width: 160px;
    height: 44px;
    font-size: 15px;
    padding: 0 45px 0 20px;
    border-radius: 8px;
    white-space: nowrap;
    background: #00BBDF !important; /* 改为蓝色背景 */
    color: #FFFFFF !important;
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  /* 确保菜单抽屉在所有内容之上 */
  .menu-drawer {
    z-index: 10001 !important;
    background-color: #FFFFFF !important;
  }
  .js details[open].menu-opening > .menu-drawer {
    transform: translateX(0) !important;
    visibility: visible !important;
  }
  /* 为按钮添加箭头图标 */
  .og-hero__actions .og-btn::after {
    content: '';
    position: absolute;
    right: 15px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .og-hero__overlay {
    display: none !important; /* 彻底移除手机端阴影遮罩 */
  }
  .og-hero__dots {
    bottom: 30px;
    z-index: 10;
  }
  .og-hero__dot {
    background: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
  }
  .og-hero__dot.is-active {
    background: #FFFFFF !important;
    transform: scale(1.3);
  }
  .og-hero__arrow {
    display: none;
  }

  .og-ritual {
    padding: 22px 24px 25px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .og-ritual__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    color: #00BBDF;
    letter-spacing: -0.02em;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
    margin: 0;
  }
  /* Products Mobile */
  .og-products {
    padding: 40px 0;
  }
  .og-products__inner {
    padding: 0;
  }
  .og-products__scroll {
    gap: 16px;
    padding: 0 24px 32px; /* Add side padding here for better scroll behavior */
    scroll-padding: 0 24px;
  }
  .og-products__nav-btn {
    display: none;
  }
  .og-product-card {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    height: auto;
    min-height: 448px;
    gap: 14px;
    margin: 0;
    scroll-snap-align: start;
  }
  .og-product-card__img-wrapper {
    width: 200px;
    height: 200px;
    max-width: 200px;
    border-radius: 12.75px;
  }
  .og-product-card__info {
    padding: 0 20px;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
  }
  .og-product-card__price-row {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }
  .og-product-card__price {
    font-size: 22px;
  }
  .og-product-card__title {
    font-size: 24px;
    line-height: 1.2;
    width: 100%;
    max-width: 240px;
    text-align: left;
  }
  .og-product-card__desc {
    font-size: 16px;
    width: 100%;
    max-width: 240px;
    color: rgba(72, 72, 72, 0.55);
    text-align: left;
  }
  .og-product-card__btn-wrapper {
    width: 100%;
    max-width: 220px;
    display: flex;
    justify-content: flex-start;
  }
  .og-product-card .og-btn--small {
    width: 100%;
    height: 40px;
    padding: 0;
  }
  .og-synergy {
    padding: 60px 24px;
  }
  .og-quote {
    padding: 40px 24px;
    background: #FFFFFF;
  }
  .og-quote__title {
    font-size: 32px;
  }
  .og-quote__text {
    font-size: 18px;
  }
  /* Features Grid Mobile */
  .og-features-grid {
    padding: 28px 24px 34px;
    background: linear-gradient(180deg, #D9F7FD 0%, #FFFFFF 100%);
  }
  .og-features-grid__inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .og-feature-card {
    width: 100%;
    max-width: 327px;
    height: auto;
    flex-direction: column !important; /* Stack vertically on mobile */
    align-items: flex-start;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  }
  .og-feature-card--reverse {
    flex-direction: column !important;
  }
  .og-feature-card__text {
    padding: 24px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }
  .og-feature-card--reverse .og-feature-card__text {
    text-align: left;
  }
  .og-feature-card__title-main {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.015em;
    color: #484848;
  }
  .og-feature-card__title-accent {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.015em;
    color: #484848;
  }
  .og-feature-card__text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: rgba(72, 72, 72, 0.55);
  }
  .og-feature-card--1 { height: auto; min-height: 355px; }
  .og-feature-card--2 { height: auto; min-height: 339px; }
  .og-feature-card--3 { height: auto; min-height: 389px; }

  .og-feature-card__img {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .og-feature-card--1 .og-feature-card__img { height: 220px; }
  .og-feature-card--2 .og-feature-card__img { height: 210px; }
  .og-feature-card--3 .og-feature-card__img { height: 300px; }

  .og-feature-card__img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(var(--mobile-img-scale, 1)) translateY(var(--mobile-img-offset-y, 0));
    transition: transform 0.3s ease;
  }
  .og-split {
    padding: 93px 44px 0px;
  }
  .og-split__inner {
    flex-direction: column;
    gap: 42px;
    align-items: center;
    width: 100%;
  }

  /* Built Section Mobile */
  .og-built-section {
    padding: 40px 0 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #D9F7FD 100%);
  }
  .og-built-features-horizontal {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
  }
  .og-built-feature-item-horizontal {
    width: 100%;
    justify-content: flex-start;
  }
  .og-split__content {
    width: 100%;
    max-width: 313px;
    gap: 30px;
    align-items: flex-start;
  }
  .og-split__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .og-split__content h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #484848;
  }
  .og-split__content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 145%;
    color: rgba(72, 72, 72, 0.55);
    letter-spacing: -0.005em;
  }
  .og-split__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
  }
  .og-split__image img {
    border-radius: 16px;
  }
  .og-split__content .og-btn {
    width: 156px;
    height: 50px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
  }
  .og-gallery {
    padding: 60px 24px 22px;
  }
  .og-gallery__header {
    margin-bottom: 22px;
  }
  .og-gallery__header h2 {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #484848;
    margin-bottom: 16px;
  }
  .og-gallery__header p {
    font-size: 16px;
    line-height: 145%;
    font-weight: 500;
    color: rgba(72, 72, 72, 0.55);
  }
  .og-gallery__col {
    width: 200px;
    gap: 20px;
  }
  .og-gallery__track {
    gap: 16px;
    padding-right: 16px;
  }
  .og-gallery__group {
    gap: 16px;
  }
  .og-gallery__img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
  }
  .og-knowledge {
    flex-direction: column;
    padding: 60px 24px;
  }
  .og-knowledge__inner {
    flex-direction: column;
    gap: 50px;
    width: 377px;
    max-width: 100%;
    align-items: flex-start;
  }
  .og-knowledge__image {
    width: 100%;
    max-width: 377px;
    height: 290px;
    border-radius: 16px;
  }
  .og-knowledge__content {
    width: 100%;
    max-width: 313px;
    gap: 30px;
    align-items: flex-start;
  }
  .og-knowledge__text {
    width: 100%;
    max-width: 313px;
    text-align: left;
  }
  .og-knowledge__title {
    font-size: 32px;
  }

  /* Logos Mobile */
  .og-logos {
    height: 133px;
    padding: 18px 0px 13px;
  }
  .og-logos__container {
    gap: 9.36px;
    padding-right: 9.36px;
  }
  .og-logo-item {
    padding: 2.83px;
    scroll-snap-align: start;
  }
  .og-logo-item img {
    height: 70px;
    width: auto;
  }

  /* Synergy Mobile - Structural Change */
  .og-synergy {
    padding: 56px 0px 50px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8F9FA 100%);
  }
  .og-synergy__inner {
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
  }
  .og-synergy__header {
    padding: 0 24px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .og-synergy__header h2 {
    max-width: 327px;
    font-size: 40px;
    line-height: 110%;
    color: rgba(72, 72, 72, 0.4);
    letter-spacing: -0.04em;
    font-weight: 600;
    margin: 0 auto;
  }
  .og-synergy__track {
    width: 100%;
    overflow: hidden;
    height: auto;
    position: relative;
    flex: none;
    padding-left: 37px; /* initial offset */
    box-sizing: border-box;
  }
  .og-synergy__list-track {
    display: flex;
    width: max-content;
    animation: og-marquee-scroll 25s linear infinite;
    flex-direction: row;
  }
  .og-synergy__list {
    display: flex;
    flex-direction: row;
    padding: 0 16px 0 0;
    gap: 16px;
    box-sizing: border-box;
    width: auto;
  }
  .og-synergy__list--duplicate {
    display: flex;
  }
  .og-synergy-item {
    flex: 0 0 300px;
    min-width: 287px;
    max-width: 300px;
    height: 244px;
    background: #FFFFFF;
    border: 2px solid #00BBDF;
    border-radius: 16px;
    padding: 24px;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .og-synergy-item__header {
    gap: 12px;
  }
  .og-synergy-item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.015em;
    color: #484848;
  }
  .og-synergy-item p {
    font-size: 16px;
    line-height: 145%;
    color: rgba(72, 72, 72, 0.55);
    letter-spacing: -0.005em;
    margin: 0;
  }

  /* Pull Quote Mobile */
  .og-quote {
    padding: 30px 24px 35px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 8.43%, rgba(255, 255, 255, 0) 93.75%);
    height: auto;
    min-height: 263px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .og-quote__inner {
    padding: 0;
  }
  .og-quote__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .og-quote__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #484848;
    width: 100%;
    max-width: 327px;
  }
  .og-quote__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.015em;
    color: rgba(72, 72, 72, 0.55);
    width: 100%;
    max-width: 327px;
    margin: 0;
  }

  /* Knowledge Base Mobile */
  .og-knowledge {
    padding: 64px 24px;
    flex-direction: column;
  }
  .og-knowledge__inner {
    flex-direction: column;
    gap: 32px;
  }
  .og-knowledge__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.2;
  }
  .og-knowledge__content {
    width: 100%;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  .og-knowledge__text {
    width: 100%;
    align-items: flex-start;
  }
  .og-knowledge__title {
    font-size: 32px;
  }
  .og-btn {
    font-size: 16px;
  }

  /* Footer Mobile */
  .og-footer {
    padding: 36px 24px 60px;
    background: #C1F5F7;
    width: 100%;
    box-sizing: border-box;
  }
  .og-footer__inner {
    max-width: 100%;
    border-top: 1px solid rgba(72, 72, 72, 0.1);
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
  }
  .og-footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100%;
    margin-bottom: 60px;
    margin-top: 0;
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
    order: 1; /* Newsletter on top for mobile */
  }
  .og-newsletter__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 145%;
    color: #484848;
    margin: 0;
  }
  .og-newsletter__text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: #484848;
    max-width: 303px;
    margin: 0;
  }
  .og-newsletter__form {
    width: 100%;
    max-width: 307px;
  }
  .og-newsletter__input-wrapper {
    position: relative;
    width: 100%;
    height: 44px;
    border: 1px solid rgba(72, 72, 72, 0.5);
    border-radius: 13px;
    background: transparent;
    overflow: visible;
  }
  .og-newsletter__input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 50px 0 15px;
    font-size: 16px;
    color: #484848;
  }
  .og-newsletter__submit {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 37px;
    height: 36px;
    background: #484848; /* Dark circle */
    border-radius: 18.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(72, 72, 72, 0.2);
  }
  .og-newsletter__submit svg {
    width: 20px;
    height: auto;
    stroke: #FFFFFF; /* White arrow */
  }
  .og-newsletter__privacy {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    line-height: 145%;
    color: rgba(72, 72, 72, 0.5);
    max-width: 303px;
    margin: 0;
  }

  .og-footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    align-items: flex-start;
    order: 2; /* Main content below newsletter for mobile */
  }
  .og-footer__company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    grid-column: 1;
    width: 100%;
  }
  .og-footer__logo {
    font-size: 24px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: -0.02em;
    color: #484848;
  }
  .og-footer__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 145%;
    color: rgba(72, 72, 72, 0.55);
    max-width: 142px;
  }
  .og-footer__socials {
    display: flex;
    gap: 24px;
  }
  .og-footer__legal {
    border: 1px solid rgba(72, 72, 72, 0.5);
    border-radius: 13px;
    padding: 22px 8px;
    width: 100%;
    max-width: 147px;
    box-sizing: border-box;
  }
  .og-footer__legal p {
    font-size: 16px;
    font-weight: 500;
    line-height: 145%;
    color: rgba(72, 72, 72, 0.5);
    margin: 0;
  }

  .og-footer__nav {
    grid-column: 2;
    width: 100%;
  }
  .og-footer__links-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    text-align: left;
  }
  .og-footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .og-footer__header {
    font-size: 16px;
    font-weight: 600;
    color: #484848;
    padding-bottom: 0;
  }
  .og-footer__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .og-footer__list a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(72, 72, 72, 0.55);
  }
}

/* UGC Section */
.og-ugc {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 80px 0;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box !important;
}

.og-ugc__header {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.og-ugc__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: #00BBDF; /* Figma 指定颜色 */
  line-height: 110%;
  margin: 0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.og-ugc__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #484848;
  font-weight: 500;
  max-width: 800px;
  margin: 0;
}

/* 无缝滚动轨道 */
.og-ugc__track-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  padding: 32px 0; /* Figma 间距 */
}

.og-ugc__track {
  display: flex;
  width: max-content;
  animation: og-ugc-scroll var(--scroll-speed, 30s) linear infinite;
}

@keyframes og-ugc-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 鼠标悬停时暂停滚动 */
.og-ugc__track-wrapper:hover .og-ugc__track {
  animation-play-state: paused;
}

.og-ugc__list {
  display: flex;
  gap: 16px; /* Figma 指定间距 */
  padding-right: 16px;
}

.og-ugc__item {
  width: 250px; /* Figma 指定宽度 */
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

/* 鼠标悬停放大效果 */
.og-ugc__item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.og-ugc__card {
  width: 100%;
  height: 336px; /* Figma 指定高度 */
  border-radius: 16px; /* Figma 指定圆角 */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
}

.og-ugc__media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 播放层覆盖在视频上 */
.og-ugc__play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1 !important; /* 保持按钮常显 */
  cursor: pointer;
  z-index: 2;
}

/* Seed 风格播放按钮：右上角矩形、透明背景、#00BBDF 边框 */
.og-ugc__play-btn-seed {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 48px;
  height: 32px;
  background: transparent; /* 透明背景 */
  border: 2px solid #00BBDF; /* 边框调整为 2px */
  border-radius: 8px; /* 矩形圆角 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.og-ugc__play-overlay:hover .og-ugc__play-btn-seed {
  transform: scale(1.1);
  /* 移除背景和边框颜色的变色效果 */
}

.og-ugc__image, 
.og-ugc__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.og-ugc__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.og-ugc__item:hover .og-ugc__caption {
  opacity: 1;
}

/* 响应式调整 - Tablet */
@media (max-width: 1024px) {
  .og-ugc__header {
    padding: 0 32px;
    gap: 43px;
  }
  .og-ugc__title {
    font-size: 44px;
  }
}

/* 响应式调整 - Mobile */
@media (max-width: 768px) {
  .og-ugc {
    padding: 34px 0 0;
  }
  .og-ugc__header {
    padding: 0 24px;
    gap: 32px;
  }
  .og-ugc__title {
    font-size: 40px;
  }
  .og-ugc__item {
    width: 200px;
  }
  .og-ugc__card {
    height: 269px;
  }
}

/* Brand Story Section - 1:1 Figma Replication */
.og-brand-story {
  padding: 120px 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.og-brand-story__inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 64px;
  gap: 36px;
}

/* Content Area */
.og-brand-story__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 516px;
}

/* Badge Style */
.og-brand-story__badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  border: 1px solid #00BBDF;
  border-radius: 39px;
  min-width: 176px;
  height: 53px;
  box-sizing: border-box;
}

.og-brand-story__badge span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  color: #00BBDF;
  text-align: center;
  letter-spacing: -0.005em;
}

/* Text Group */
.og-brand-story__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin: 64px 0; /* Increased vertical spacing */
}

.og-brand-story__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  color: #00BBDF;
  letter-spacing: -0.02em;
  margin: 0;
}

.og-brand-story__desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #484848;
  opacity: 0.6;
  letter-spacing: -0.005em;
  margin: 0;
}

/* CTA Button */
.og-brand-story__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background: #00BBDF;
  border-radius: 12px;
  min-width: 201px;
  height: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.og-brand-story__btn:hover {
  opacity: 0.9;
}

/* Image Wrapper */
.og-brand-story__image-wrapper {
  flex: none;
  width: 600px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.og-brand-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .og-brand-story__inner {
    padding: 65px 44px 0;
    align-items: flex-start;
  }
  .og-brand-story__content {
    max-width: 339px;
    gap: 30px;
  }
  .og-brand-story__title {
    font-size: 44px;
  }
  .og-brand-story__text-group {
    margin: 40px 0; /* Balanced margin for tablet */
  }
  .og-brand-story__image-wrapper {
    width: 337px;
    height: 481px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .og-brand-story {
    padding: 80px 0;
  }
  .og-brand-story__inner {
    flex-direction: column;
    padding: 0 44px;
    gap: 36px;
  }
  .og-brand-story__content {
    max-width: 313px;
    align-items: flex-start;
  }
  .og-brand-story__title {
    font-size: 40px;
  }
  .og-brand-story__text-group {
    margin: 32px 0; /* Reduced margin for mobile */
  }
  .og-brand-story__image-wrapper {
    width: 100%;
    max-width: 375px;
    height: 412px;
  }
}

/* Blog Bento Section - Improved Alignment */
.og-blog {
  padding: 120px 0;
  background: transparent;
}

.og-blog__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px; /* Increased gap for larger layout */
  max-width: 1440px; /* Enlarge container width */
  margin: 0 auto;
  padding: 0 40px; /* Reduced side padding to let content expand */
}

/* Left Column */
.og-blog__main-card {
  flex: 1.5; /* Make main card more dominant */
  display: flex;
  flex-direction: column;
}

.og-blog__card--main {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.og-blog__image-wrapper--main {
  width: 100%;
  aspect-ratio: 16 / 10; /* Keep horizontal rectangle */
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 0;
}

/* Right Column */
.og-blog__sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1.06 / 1; /* Recalculated for flex 1.5/1 ratio to match height */
  position: relative;
}

.og-blog__header {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.og-blog__title {
  font-family: var(--font-heading-family);
  font-size: 56px;
  font-weight: 600;
  color: #00BBDF;
  line-height: 1;
  margin: 0;
}

.og-blog__small-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-end; /* Bottom align the images */
}

.og-blog__card--small {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}

.og-blog__image-wrapper--small {
  width: 100%;
  aspect-ratio: 1.4 / 1; /* Horizontal rectangle */
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 0;
}

.og-blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.og-blog__card:hover .og-blog__img {
  transform: scale(1.05);
}

/* Text Containers */
.og-blog__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.og-blog__card-title,
.og-blog__card-title-small {
  font-family: var(--font-heading-family);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #484848;
  transition: color 0.3s ease;
}

.og-blog__card-desc,
.og-blog__card-desc-small {
  font-family: var(--font-body-family);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(72, 72, 72, 0.6);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.og-blog__card-title-small {
  font-size: 2rem;
}

.og-blog__card-desc-small {
  font-size: 1.6rem;
  -webkit-line-clamp: 2;
}

/* Position small card text below the alignment line */
.og-blog__card--small .og-blog__text {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 32px;
}

.og-blog__card:hover .og-blog__card-title,
.og-blog__card:hover .og-blog__card-title-small {
  color: #00BBDF;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .og-blog {
    padding: 96px 0;
  }
  .og-blog__inner {
    flex-direction: column;
    padding: 0 32px;
    gap: 48px;
  }
  .og-blog__sidebar {
    order: 1;
    max-width: 100%;
    gap: 48px;
    height: auto;
  }
  .og-blog__main-card {
    order: 2;
    max-width: 100%;
  }
  .og-blog__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    height: auto;
  }
  .og-blog__title {
    font-size: 44px;
  }
  .og-blog__small-cards {
    gap: 40px;
    height: auto;
  }
  .og-blog__card--small {
    flex: 1;
  }
  .og-blog__image-wrapper--small {
    height: 300px; /* Add height for tablet */
  }
  .og-blog__image-wrapper--main {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .og-blog {
    padding: 80px 0;
  }
  .og-blog__inner {
    padding: 0 24px;
    gap: 32px;
  }
  .og-blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .og-blog__title {
    font-size: 40px;
  }
  .og-blog__small-cards {
    flex-direction: column;
    gap: 32px;
  }
  .og-blog__image-wrapper--small {
    height: 208px; /* Fixed height for mobile */
    flex-shrink: 0;
  }
}

/* Lively Animations */
@keyframes og-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes og-float-tilted-left {
  0% { transform: rotate(-8deg) translateY(0px); }
  50% { transform: rotate(-8deg) translateY(-15px); }
  100% { transform: rotate(-8deg) translateY(0px); }
}

@keyframes og-float-tilted-right {
  0% { transform: rotate(8deg) translateY(0px); }
  50% { transform: rotate(8deg) translateY(-15px); }
  100% { transform: rotate(8deg) translateY(0px); }
}

.og-animate-float {
  animation: og-float 6s ease-in-out infinite;
}

/* UGC Static animations removed */


/* Staggered Reveal */
[data-cascade] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: calc(var(--animation-order, 0) * 0.15s);
}

.scroll-trigger:not(.scroll-trigger--offscreen) [data-cascade] {
  opacity: 1;
  transform: translateY(0);
}

/* Specific Section Styles */
.og-brand-story__content.scroll-trigger {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease-out;
}

.og-brand-story__content.scroll-trigger:not(.scroll-trigger--offscreen) {
  opacity: 1;
  transform: translateX(0);
}

.og-brand-story__image-wrapper.scroll-trigger {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease-out;
}

.og-brand-story__image-wrapper.scroll-trigger:not(.scroll-trigger--offscreen) {
  opacity: 1;
  transform: translateX(0);
}

/* Blog Bento Reveal */
.og-blog__main-card.scroll-trigger,
.og-blog__sidebar.scroll-trigger {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.og-blog__main-card.scroll-trigger:not(.scroll-trigger--offscreen),
.og-blog__sidebar.scroll-trigger:not(.scroll-trigger--offscreen) {
  opacity: 1;
  transform: translateY(0);
}

/* Best Seller Section */
.og-best-seller {
  padding: 80px 0;
  background: transparent;
}

.og-best-seller__header {
  max-width: 1440px;
  margin: 0 auto 32px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.og-best-seller__title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.og-best-seller__card {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 600px; /* Matched with other large cards */
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
}

.og-best-seller__image-wrapper {
  width: 100%;
  height: 100%;
}

.og-best-seller__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.og-best-seller__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none; /* Let clicks pass through to image if needed, but buttons will override this */
}

.og-best-seller__text-group {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.og-best-seller__product-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #D1FF52; /* Light green from the reference */
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.og-best-seller__product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.og-best-seller__actions {
  display: flex;
  justify-content: flex-end;
  pointer-events: auto; /* Enable clicks for the button area */
}

.og-best-seller__actions .og-btn {
  min-width: 160px;
}

@media (max-width: 1024px) {
  .og-best-seller__card {
    height: 500px;
  }
  .og-best-seller__product-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .og-best-seller {
    padding: 64px 0;
  }
  .og-best-seller__header {
    padding: 0 24px;
  }
  .og-best-seller__title {
    font-size: 32px;
  }
  .og-best-seller__card {
    height: 450px;
    margin: 0 24px;
    border-radius: 20px;
  }
  .og-best-seller__content {
    padding: 32px;
  }
  .og-best-seller__product-title {
    font-size: 28px;
  }
  .og-best-seller__product-desc {
    font-size: 16px;
  }
}
  transform: translateY(0);
}

.og-blog__sidebar.scroll-trigger {
  transition-delay: 0.2s;
}

/* Best Seller Section V2 */
.og-bs-v2 {
  padding: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0; /* Set to 0 to eliminate blue gaps between elements */
  background: #00BBDF;
}

.og-bs-v2__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  margin-bottom: 20px; /* Add margin here instead of container gap */
}

.og-bs-v2__section-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.og-bs-v2__shop-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.og-bs-v2__shop-all:hover {
  background: rgba(255, 255, 255, 0.3);
}

.og-bs-v2__banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 850; /* Fixed aspect ratio instead of fixed height */
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  margin: 0;
  background: #000;
}

.og-bs-v2__banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.og-bs-v2__banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.og-bs-v2__banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 40px;
}

.og-bs-v2__banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
}

.og-bs-v2__banner-title {
  font-size: 36px; /* Reduced from 52px to be smaller than the main section title (44px) */
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.og-bs-v2__banner-subtitle {
  font-size: 16px; /* Slightly reduced from 18px */
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.og-btn--explore {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #fff; /* White background for visibility on blue section */
  color: #00BBDF; /* Blue text to match the section */
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.og-btn--explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Community Part */
.og-bs-v2__community {
  background: #E8F9FA;
  padding: 80px 64px 120px;
  border-radius: 0 0 0 24px; /* Only bottom-left corner is rounded */
  position: relative;
  overflow: hidden;
  z-index: 1; /* Create a low-level stacking context */
}

.og-bs-v2__comm-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 24px; /* Borrowed gap from video section */
}

.og-bs-v2__comm-title {
  font-size: 40px;
  font-weight: 600;
  color: #00bbdf;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0;
}

.og-bs-v2__comm-subtitle {
  font-size: 18px;
  color: #484848;
  opacity: 0.6; /* Borrowed opacity from video section */
  line-height: 1.5;
  margin: 0;
}

.og-bs-v2__comm-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.og-bs-v2__card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Tilted effect */
.og-bs-v2__card:nth-child(1) { transform: rotate(-3deg) translateY(15px); }
.og-bs-v2__card:nth-child(2) { transform: rotate(1.5deg); z-index: 2; }
.og-bs-v2__card:nth-child(3) { transform: rotate(-2deg) translateY(8px); }

.og-bs-v2__card:hover {
  transform: rotate(0) scale(1.05) translateY(-15px) !important;
  z-index: 20 !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.og-bs-v2__card-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.og-bs-v2__card-media {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}

.og-bs-v2__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.og-bs-v2__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.og-bs-v2__card-user {
  font-size: 16px;
  line-height: 1.5;
  color: #484848;
}

.og-bs-v2__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4px;
}

.og-bs-v2__card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.og-bs-v2__stars--small {
  gap: 3px;
}

.og-bs-v2__badge {
  font-size: 13px;
  font-weight: 600;
  color: rgba(72,72,72,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}

.og-bs-v2__card-prod {
  width: 48px;
  height: 48px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 4px;
}

.og-bs-v2__card-prod img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .og-bs-v2__header {
    padding: 0 40px;
  }
  .og-bs-v2__banner {
    margin: 0;
  }
  .og-bs-v2__banner-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .og-bs-v2 {
    padding: 40px 0 0 0;
    gap: 0;
  }
  .og-bs-v2__header {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .og-bs-v2__section-title {
    font-size: 32px;
  }
  .og-bs-v2__shop-all {
    align-self: flex-end;
  }
  .og-bs-v2__banner {
    aspect-ratio: 750 / 500; /* Maintain a good mobile aspect ratio */
    margin: 0;
    border-radius: 12px 12px 0 0;
  }
  .og-bs-v2__banner-inner {
    padding: 24px;
  }
  .og-bs-v2__banner-content {
    gap: 8px;
  }
  .og-bs-v2__banner-title {
    font-size: 24px; /* Reduced from 28px for mobile */
  }
  .og-bs-v2__banner-subtitle {
    font-size: 13px; /* Slightly reduced from 14px */
  }
  .og-btn--explore {
    bottom: 24px;
    right: 24px;
    padding: 10px 20px;
    font-size: 16px;
  }
  .og-bs-v2__community {
    padding: 60px 24px 80px;
    border-radius: 0 0 0 20px; /* Rounded bottom-left only on mobile */
    margin-top: 20px;
    z-index: 1;
  }
  .og-bs-v2__comm-header {
    margin-bottom: 40px;
    gap: 16px; /* Slightly smaller gap on mobile */
  }
  .og-bs-v2__comm-title {
    font-size: 24px;
  }
  .og-bs-v2__comm-grid {
    flex-direction: column;
    gap: 32px;
  }
  .og-bs-v2__card {
    transform: none !important;
  }
}


