@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  /* Color */
  --primary-blue: #0972DB;
  --dark-blue: #395A7F;
  --mid-blue: #6E9FC1;
  --light-blue: #A3CAE9;
  --light-gray: #E9ECEE;
  --secondary-blue: #E7F0FA;
  --dark-gray: #ACACAC;
  --text-gray: #797979;
  --white: #fff;
  --black: #000;

  /* Font Size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 3rem;

  /* Font Weight */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Border Radius */
  --border-radius-s: 8px;
  --border-radius-m: 25px;
  --border-radius-circle: 50%;

  /* Site Max Width */
  --site-max-width: 1300px;

  /* Chinese Font */
  --chinese-font: 'Noto Sans TC', 'Microsoft YaHei', 'SimHei', sans-serif;
}

[lang="zh"] {
  font-family: var(--chinese-font);
}

/* Apply Chinese fonts to specific elements when language is Chinese */
html[lang="zh"] body {
  font-family: var(--chinese-font);
}

html {
  scroll-behavior: smooth;
}

/* Style for whole site */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

.section-title {
  text-align: center;
  padding: 60px 0 60px;
  text-transform: uppercase;
  font-size: var(--font-size-l);
  letter-spacing: 3px;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: var(--primary-blue);
}

.fade-in {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-content .element-1 {
  transition-delay: 0.2s;
}

.section-content .element-2 {
  transition-delay: 0.4s;
}

.section-content .element-3 {
  transition-delay: 0.6s;
}

.section-content .element-4 {
  transition-delay: 0.8s;
}

/* Navbar styling */
header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background: var(--white);
}

header .navbar {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
}

.navbar .nav-logo {
  width: 150px;
}

.navbar .nav-menu {
  display: flex;
  gap: 40px;
}

.navbar .nav-menu .language-switcher-wrapper {
  position: relative;
  display: inline-block;
}

#languageIcon {
  font-size: var(--font-size-l);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--black);
  font-size: var(--font-size-n);
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60px;
  justify-content: center;
}

.language-toggle:hover {
  color: var(--primary-blue);
}

.language-toggle i {
  font-size: 1.2em;
}

.lang-text {
  display: inline-block;
  min-width: 25px;
  text-align: center;
}

.language-switcher-wrapper i {
  cursor: pointer;
}

.navbar .nav-menu .nav-link {
  color: var(--black);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-normal);
  position: relative;
}

.navbar .nav-menu .nav-link::after {
  content: '';
  height: 3px;
  width: 0;
  background: var(--primary-blue);
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
  border-radius: var(--border-radius-s);
}

.navbar .nav-menu .nav-link:hover:after {
  width: 100%;
}

.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
}

/* Hero-section styling */
.hero-section {
  min-height: 100vh;
  background: var(--secondary-blue);
  padding-top: 30px;
}

.hero-section .section-content {
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: space-between;
}

.hero-section .hero-details .title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-extrabold);
  background: linear-gradient(90deg, #0972DB 10%, #00A8E8 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.hero-section .hero-details .subtitle {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  color: var(--text-gray);
  margin-top: 15px;
  max-width: 70%;
  line-height: 1.5;
}

.hero-section .hero-details .hero-bnts {
  display: flex;
  gap: 23px;
  margin-top: 50px;
}

.hero-section .hero-details .bnt {
  padding: 10px 26px;
  color: var(--white);
  border: 2px solid transparent;
  border-radius: var(--border-radius-m);
  background: var(--primary-blue);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.hero-section .hero-details .latest-product:hover,
.hero-section .hero-details .contact,
.hero-section .hero-details .latest-product.hovered {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  background: transparent;
}

.hero-section .hero-details .contact:hover,
.hero-section .hero-details .contact.hovered {
  color: var(--white);
  border-color: transparent;
  background: var(--primary-blue);
}

.hero-section .hero-img-wrapper {
  max-width: 500px;
  margin-right: 30px;
  filter: brightness(1.12) contrast(1.05)
}

/* About-section styling */
.about-section {
  padding: 120px 0;
  background: var(--white);
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  /* set to justify-content if there's a image */
  justify-content: center;
}

/* .about-section .about-img-wrapper .about-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
} */

.about-section .about-details {
  max-width: 70%;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 0 0 30px;
  text-align: justify;
  font-size: var(--font-size-m);
}

/* Product-section styling */
.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.product-video {
  position: sticky;
  top: 100px;
}

.video-wrapper {
  width: 100%;
  height: 600px;
  /* Limit maximum height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  max-height: none;
  /* Match the wrapper height */
  object-fit: contain;
  /* Maintain aspect ratio without stretching */
  display: block;
  background: #000;
}

.product-details {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  max-height: 600px;
  overflow-y: auto;
  /* Match video max height */
}

.product-header {
  margin-bottom: 2rem;
}

.product-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.product-features {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.feature-badge {
  background: linear-gradient(135deg, #0972DB 0%, #00A8E8 100%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Tabs */
.product-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-button {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #0972DB;
}

.tab-button.active {
  color: #0972DB;
  font-weight: 600;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #0972DB 0%, #00A8E8 100%);
}

/* Tab Content */
.tab-content {
  min-height: 300px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Overview Grid */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0972DB 0%, #00A8E8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.overview-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.overview-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.features-list i {
  color: #0972DB;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.features-list strong {
  display: block;
  color: #333;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.features-list p {
  color: #666;
  font-size: 0.9rem;
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.application-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.application-card:hover {
  border-color: #0972DB;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(9, 114, 219, 0.2);
}

.application-card h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.application-card h4 i {
  color: #0972DB;
  margin-right: 0.5rem;
}

.application-card ul {
  list-style: none;
  padding: 0;
}

.application-card ul li {
  padding: 0.4rem 0;
  color: #666;
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.application-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0972DB;
}

/* Usage Steps */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0972DB 0%, #00A8E8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
}

.step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-top: 1rem;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

/* CTA Button */
.product-cta {
  margin-top: 2rem;
  text-align: center;
}

.product-cta .bnt {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0972DB 0%, #00A8E8 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.product-cta .bnt:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-video {
    position: relative;
    top: 0;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .applications-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.product-inf {
  text-align: center;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.product-inf__percent {
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-m);
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
}

.product-inf__percent circle {
  transform: rotate(180deg) scaleY(-1);
  transform-origin: 50%;
  border-radius: var(--border-radius-s);
}

.product-inf__percent-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-inf__title {
  font-weight: var(--font-weight-semibold);
  letter-spacing: 2px;
  font-size: var(--font-size-l);
}

.product-inf__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px;
  height: 100%;
  max-height: 400px;
  /* Adjust this value based on your slider height */
  overflow-y: auto;
  /* Add scrolling if content exceeds height */
  margin-top: -30px;
}

.product-inf__box {
  background-color: rgba(9, 114, 219, 0.1);
  border-radius: 8px;
  padding: 15px;
  height: 100%;
}

.product-inf__text {
  color: var(--white);
}

.product-inf__text h3 {
  font-size: 1rem;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.product-inf__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--mid-blue);
  text-align: left;
}

.product-inf__text li {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.product-inf__text li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.info-img-wrapper {
  width: 60%;
}

.product-img {
  position: absolute;
  z-index: 2;
  width: 500px;
  left: 25%;
  transform: translateX(-45%);
  max-height: 500px;
  height: 100%;
  pointer-events: none;
}

.product-img__item {
  display: flex;
  align-items: center;
  position: absolute;
  pointer-events: none;
  user-select: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-130px);
  opacity: 0;
  transition: all 0.3s;
}

.product-img__item.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition-delay: 0.3s;
}

.product-img__item img {
  object-fit: contain;
  object-position: center right;
}

.product-slider__content {
  color: #fff;
  padding-top: 1px;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 250px;
  padding-right: 80px;
}

/* Team-section styling */
.team-section {
  padding: 50px 0 100px;
  background: var(--white);
}

.team-section .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 0;
}

.team-section .teammate {
  user-select: none;
  display: flex;
  padding: 35px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.team-section .teammate .teammate-img {
  width: auto;
  height: auto;
  max-height: 280px;
  background-color: var(--secondary-blue);
  object-fit: cover;
  margin-bottom: 50px;
}

.team-section .teammate .name {
  margin-bottom: 5px;
  font-size: var(--font-size-m);
}

.team-section .teammate .position {
  margin-bottom: 30px;
  font-size: var(--font-size-m)
}

.team-section .teammate .des {
  line-height: 25px;
}

.team-section .team-list {
  margin-bottom: 30px;
}

.team-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--primary-blue);
}

.team-section .swiper-slide-button {
  color: var(--primary-blue);
  margin-top: -50px;
  transition: 0.3s ease;
}

.team-section .swiper-slide-button:hover {
  color: var(--dark-gray);
}

/* Contact-section styling */
.contact-section {
  padding: 50px 0 100px;
  background: var(--light-gray);
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 40px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info .small-logo {
  font-size: var(--font-size-m);
  width: 20px;
}

.contact-section .contact-info-list .contact-info p {
  font-size: var(--font-size-n);
}

.contact-section .contact-form {
  max-width: 50%;
}

.contact-section .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--dark-gray);
}

.contact-section .contact-form .form-input:focus {
  border: 2px solid var(--primary-blue);
}

.contact-section .contact-form textarea.form-input {
  height: 200px;
  padding: 12px;
  resize: vertical;
}

.contact-section .contact-form .submit-button {
  padding: 10px 26px;
  color: var(--white);
  margin-top: 40px;
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--primary-blue);
  border-radius: var(--border-radius-m);
  border: 2px solid var(--primary-blue);
  transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
  background: transparent;
  color: var(--primary-blue);
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  color: var(--black);
}

.form-status.error {
  display: block;
  color: #dc3545;
}

/* Footer styling */
.footer-section {
  padding: 20px 0;
  background: var(--dark-gray);
}

.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section :where(.copyright, .policy-link) {
  color: var(--white);
}

.footer-section .policy-text .separator {
  color: var(--white);
  margin: 0 5px;
}

/* Job Section Styles */
.job-section {
  padding: 120px 0 80px;
  background-color: var(--secondary-blue);
}

/* .job-section .section-title {
  color: var(--primary-blue);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
} */

.job-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-title {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.job-section-content {
  margin-bottom: 30px;
}

.job-section-content h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.job-section-content ul {
  list-style: none;
  padding-left: 20px;
}

.job-section-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.job-section-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--black);
}

.job-section-content p {
  padding-left: 20px;
  line-height: 1.5;
}

/* Responsive for max-width 900px */
@media screen and (max-width: 900px) {
  :root {
    /* Font Size */
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 3rem;
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-m);
  }

  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 42px;
  }

  .navbar #menu-open-button {
    color: var(--black);
  }

  .navbar .nav-menu {
    display: block;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    flex-direction: column;
    padding-top: 100px;
    justify-items: center;
    background: var(--white);
    transition: left 0.2s ease;
  }

  .navbar .language-switcher-wrapper {
    margin-top: 20px;
  }

  /* Remove old dropdown styles */
  #languageSwitcher,
  #languageSwitcher.show {
    display: none;
  }

  .nav-menu .nav-item:last-child {
    margin-top: auto;
    padding: 15px 0;
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--black);
    display: block;
    margin-top: 18px;
    padding-top: 30px;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-normal);
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 100px 20px 30px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .hero-section .hero-details .title {
    font-size: 2.5rem;
  }

  .hero-section .hero-details .subtitle,
  .about-section .about-details,
  .contact-section .contact-form {
    max-width: 100%;
  }

  .hero-section .hero-details .hero-bnts {
    justify-content: center;
  }

  .hero-section .hero-img-wrapper {
    max-width: 270px;
    margin-right: 0;
    padding: 0;
  }

  .about-section .section-content {
    gap: 70px;
    flex-direction: column;
  }

  .about-section .about-img-wrapper .about-img {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
  }

  .about-section .about-details .section-title {
    padding: 0 0 60px;
  }

  .product-inf {
    display: flex;
    flex-direction: column;
  }

  .contact-section .section-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .contact-section .product-slider .prev,
  .contact-section .product-slider .next {
    top: 170px;
  }

  .contact-section .product-slider .prev {
    left: 0;
    transform: translate(-50%, -50%);
  }

  .contact-section .product-slider {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    position: relative;
    top: 0;
    margin-top: 170px;
    margin-bottom: 100px;
  }

  /* .contact-section .product-slider br {
        display: none;
      } */
}

@media screen and (max-width: 640px) {
  .contact-section .section-content {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .product-section .bg-shape {
    height: 200px;
    padding: 30px;
  }

  .contact-section .product-slider .prev {
    transform: translate(20%, -50%);
  }

  .contact-section .product-slider .next {
    transform: translate(-20%, -50%);
  }

  .product-section .product-slider {
    width: 85%;
    margin-top: 130px;
  }

  .team-section .slider-wrapper {
    margin: 0 0 30px;
  }

  .team-section .swiper-slide-button {
    display: none;
  }

  .footer-section .section-content {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  .product-section {
    height: auto;
    min-height: 100vh;
  }
}

@media screen and (max-width: 1200px) {
  .product-section .section-content {
    max-width: 920px;
  }
}

@media screen and (max-width: 992px) {
  .product-section .section-content {
    max-width: 920px;
    margin-top: 100px;
    height: auto;
    min-height: 100vh;
  }
}

@media screen and (max-width: 767px) {
  .product-section .section-content {
    margin-top: 20px;
  }

  .product-slider__title::after {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 576px) {
  .product-section .section-content {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .bg-shape {
    width: 45%;
  }
}

@media screen and (max-width: 992px) {
  .bg-shape {
    width: 90%;
    height: 290px;
    align-items: flex-start;
    padding: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .bg-shape {
    padding: 30px;
    width: 95%;
    border-radius: 20px;
  }
}

@media screen and (max-width: 576px) {
  .bg-shape {
    height: 200px;
    padding: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .bg-shape img {
    width: 430px;
    left: 10px;
  }
}

@media screen and (max-width: 992px) {
  .bg-shape img {
    transform: none;
    width: 100%;
    position: relative;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    height: 100%;
    object-position: top center;
  }
}

@media screen and (max-width: 992px) {

  .next,
  .prev {
    top: 170px;
  }
}

@media screen and (max-width: 1200px) {
  .prev {
    left: -21%;
  }
}

@media screen and (max-width: 992px) {
  .prev {
    left: 0;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 576px) {
  .prev {
    transform: translate(20%, -50%);
  }
}

@media screen and (max-width: 576px) {
  .next {
    transform: translate(-20%, -50%);
  }
}

@media screen and (max-width: 1200px) {
  .product-slider {
    width: 80%;
  }
}

@media screen and (max-width: 992px) {
  .product-slider {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    position: relative;
    top: 0;
    margin-top: 170px;
    margin-bottom: 100px;
  }

  /* .product-slider br {
      display: none;
    } */
}

@media screen and (max-width: 767px) {
  .product-slider {
    border-radius: 20px;
  }
}

@media screen and (max-width: 576px) {
  .product-slider {
    width: 85%;
    margin-top: 130px;
  }
}

@media screen and (max-width: 992px) {
  .product-slider__item {
    height: auto;
  }
}

@media screen and (max-width: 992px) {
  .product-slider__card {
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .product-slider__card {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .product-slider__cover {
    border-radius: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .product-slider__content {
    padding-left: 220px;
  }
}

@media screen and (max-width: 992px) {
  .product-slider__content {
    padding: 20px 60px 100px;
    padding-top: 280px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .product-slider__content {
    padding: 20px 30px 50px;
    padding-top: 300px;
  }
}

@media screen and (max-width: 576px) {
  .product-slider__content {
    padding-top: 220px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .product-slider__title {
    font-size: 34px;
  }
}

@media screen and (max-width: 576px) {
  .product-slider__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .product-slider__price {
    font-size: 36px;
  }
}

@media screen and (max-width: 576px) {
  .product-slider__price {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .product-slider__cart {
    margin-right: 30px;
  }
}

@media screen and (max-width: 576px) {
  .product-slider__cart {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 992px) {
  .product-ctr {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .product-ctr {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
  }

  .info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }

  .product-inf {
    align-items: center;
    justify-content: center;
  }

  .product-ctr .hr-vertical {
    width: 100%;
    margin: 35px 0;
    height: 3px;
  }
}

@media screen and (max-width: 767px) {
  .product-labels {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .product-labels__group {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .product-inf {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .product-img {
    width: 430px;
    left: 20%;
  }
}

@media screen and (max-width: 992px) {
  .product-img {
    width: 430px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .product-img {
    width: 100%;
    max-width: 400px;
    top: 30px;
    height: 390px;
  }
}

@media screen and (max-width: 576px) {
  .product-img {
    max-width: 300px;
    height: 300px;
  }
}