:root {
  --page-width: 1440px;
  --container-width: 1170px;
  --font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --font-heading: "Montserrat", "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Tailwind theme colors moved from inline @theme */
  --color-primary-1: #F7F9FC;
  --color-primary-2: #FFF1C7;
  --color-primary-3: #5A7184;
  --color-primary: #013557;
  --color-secondary-0: #FFF3EB;
  --color-secondary-1: #FBDDB9;
  --color-secondary-2: #FAD4A8;
  --color-secondary-3: #F7BA74;
  --color-secondary-4: #F5A951;
  --color-secondary-5: #FE8432;
  --color-gray-1: #FFFFFF;
  --color-gray-2: #F4F5F7;
  --color-gray-3: #E9EBE9;
  --color-gray-4: #DEDEDE;
  --color-gray-5: #CDCDCD;
  --color-gray-6: #9B9B9B;
  --color-gray-7: #767676;
  --color-gray-8: #686B6B;
  --color-gray-9: #3C3C3C;
  --color-gray-10: #242424;
  --image-shadow: 0px 22px 74px 0px rgba(218, 218, 218, 0.33);

  --color-bg: #FFFFFF;
  --color-text: #242424;
  --color-muted: #6b7280;
  --color-primary-600: #013557;

  --gradient-subtle: linear-gradient(180deg, rgba(245,169,81,0.03) 0%, rgba(245,169,81,0.17) 50%, rgba(245,169,81,0.49) 100%);
  --gradient-accent: linear-gradient(180deg, rgba(245,169,81,1) 0%, rgba(245,169,81,0) 100%);

  --radius-md: 10px;
  --shadow-elevated: 0px 20px 40px -10px rgba(154,167,193,0.5);

  --space-32: 32px;
  --space-44: 44px;
  --space-50: 50px;
  --space-68: 68px;
  --space-80: 80px;
  --space-100: 100px;
  --space-120: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  .seo-content, .news-detail, .seo-article, .contact-content{

    a {
      color: #007bff; /* Màu xanh dương */
      text-decoration: none; /* Bỏ gạch chân mặc định */
      font-weight: 500; /* Độ đậm chữ */
      transition: color 0.3s ease; /* Hiệu ứng chuyển màu mượt mà */
    }

    /* Khi di chuột qua */
    a:hover {
      color: #0056b3; /* Màu xanh đậm hơn */
      text-decoration: underline; /* Gạch chân khi di chuột */
    }

    /* Khi đã truy cập (tùy chọn) */
    a:visited {
      color: #6f42c1; /* Màu tím đậm hơn */
    }

    /* Khi đang nhấn chuột (tùy chọn) */
    a:active {
      color: #d9534f; /* Màu đỏ */
    }

    /* Để chỉ style link trong bài viết (ví dụ trong thẻ <article>) */
    article a {
      color: #17a2b8; /* Một màu khác, ví dụ xanh cyan */
    }
    img{
      margin: auto !important;
    }
    h1 { padding: 0.5rem 0; }
    h2 { padding: 0.5rem 0; }
    h3 { padding: 0.5rem 0; }
    h4 { padding: 0.5rem 0; }
    ul,
    ol {
      padding: 0.5rem 0;
      margin-left: 20px !important;  /* Thụt vào */
      padding-left: 20px !important; /* Thụt vào (tùy trình duyệt) */
      list-style-position: outside !important;
    }

    ul {
      list-style-type: disc !important; /* Hiển thị dấu chấm */
    }
    ul ul {
      padding: 0.5rem 0;
      list-style-type: circle !important; /* Dấu chấm tròn trắng */
      padding-left: 20px;
    }
    ul ul ul {
      padding: 0.5rem 0;
      list-style-type: square  !important; /* Nếu có cấp 3, chấm vuông */
      padding-left: 20px;
    }
    ol {
      list-style-type: decimal !important; /* Hiển thị số */
    }

  }

}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header (1440x800 frame in design is a hero block; header sits on top) */
.header {
  width: 100%;
  position: relative;
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 135px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* .logo removed (unused) */

.nav {
  display: none;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  padding: 24px 16px;
  font-size: 14px;
}

.nav a.active {
  border-bottom: 3px solid #F5A951;
  padding: 24px 16px 21px;
}

/* Navigation Dropdown Menu */
.nav-dropdown {
  /* position: relative; */
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  width: 100vw;
  /* margin-left: calc(-50vw + 50% - 135px); */
  background: white;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  padding: 32px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  border-top: 3px solid #FE8432;
  overflow: visible;        /* QUAN TRỌNG */
  max-height: none;        /* bỏ giới hạn */
}

.nav-dropdown-list > li > .nav-dropdown-list {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  padding: 12px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: .25s ease;
  z-index: 9999;
}

/* hover cấp 2 → bung cấp 3 */
.nav-dropdown-list > li:hover > .nav-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  margin-left: 24px;
}

.has-sub {
  position: relative;
  padding-right: 16px;
}

.nav-arrow-3 {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 10px;
  transform: rotate(0deg);
  transition: transform .25s ease;
}

/* hover cấp 2 → mũi tên xoay sang phải */
.has-sub:hover > .nav-arrow-3 {
  transform: rotate(90deg);
}

/* trạng thái bình thường */
.header:not(.is-fixed) {
  position: relative;
}

/* khi scroll */
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}


.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
/*.nav-dropdown-content {*/
/*  max-height: 45vh;*/
/*  overflow-y: auto;*/
/*  overflow-x: visible;*/
/*}*/


.nav-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-dropdown-list li {
  margin: 0;
}

.nav-dropdown-list a {
  color: var(--color-gray-9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
  display: block;
  padding: 0;
}

.nav-dropdown-list a:hover {
  color: var(--color-secondary-5);
}

.nav-dropdown-more {
  color: var(--color-secondary-5) !important;
  font-weight: 600 !important;
  margin-top: 4px;
}

.nav-dropdown-trigger.active {
  border-bottom: 3px solid #F5A951;
  padding: 24px 16px 21px;
}

/* Responsive dropdown styles */
@media (max-width: 1024px) {
  .nav-dropdown-menu {
    padding: 24px 20px;
    margin-left: calc(-50vw + 50% - 16px);
  }

  .nav-dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    padding: 24px 20px;
  }

  .nav-dropdown-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Compact dropdown menu for smaller menus */
.nav-dropdown-menu--compact {
  width: auto;
  min-width: 200px;
  left: 0;
  right: auto;
  padding: 20px 24px;
}

.nav-dropdown-menu--compact .nav-dropdown-content {
  grid-template-columns: 1fr;
  gap: 0;
}

.nav-dropdown-menu--compact .nav-dropdown-list li {
  /*width: fit-content;*/
}

.nav-dropdown-menu--compact .nav-dropdown-list a {
  white-space: nowrap;
}

.nav-dropdown:has(.nav-dropdown-menu--compact) {
  position: relative;
}

/* Hamburger Menu Styles */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

/* .hamburger-line removed (unused) */

/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 31;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 478px;
  height: 100vh;
  background-color: white;
  padding: 50px 0 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #242424;
  z-index: 1;
}

.mobile-nav-link {
  display: block;
  padding: 22px 24px;
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* .mobile-nav-link:hover {
  background-color: #F7F9FC;
  color: #013557;
} */

.mobile-nav-link.active {
  color: #FE8432;
}

/* Mobile Navigation Expandable Menu */
.mobile-nav-expandable {
  border-top: 1px solid #E9EBE9;
  border-bottom: 1px solid #E9EBE9;
}

.mobile-nav-expandable-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* .mobile-nav-expandable-trigger:hover {
  background-color: #F7F9FC;
} */

.mobile-nav-expandable-trigger span {
  flex: 1;
}

.mobile-nav-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.mobile-nav-icon-minus {
  transform: rotate(45deg);
}

.mobile-nav-submenu {
  display: none;
  /* background-color: #F7F9FC; */
}

.mobile-nav-expandable--expanded .mobile-nav-submenu {
  display: block;
}

.mobile-nav-expandable-item {
  border-bottom: 1px solid #E9EBE9;
}

.mobile-nav-expandable-item:last-child {
  border-bottom: none;
}

.mobile-nav-expandable-subtrigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px 18px 48px;
  background: transparent;
  border: none;
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-expandable-subtrigger:hover {
  background-color: #FFFFFF;
  color: #013557;
}

/* .mobile-nav-expandable-subtrigger--active {
  color: #FE8432;
} */

.mobile-nav-expandable-subtrigger span {
  flex: 1;
}

.mobile-nav-submenu-level2 {
  display: none;
  background-color: #FFFFFF;
  padding-left: 0;
}

.mobile-nav-expandable-item--expanded .mobile-nav-submenu-level2 {
  display: block;
}

.mobile-nav-link-level2 {
  display: block;
  padding: 14px 24px 14px 72px;
  color: #242424;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link-level2:hover {
  /* background-color: #F7F9FC; */
  color: #013557;
}


/* Sections */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.desktop-container {
  width: 100%;
  max-width: 1202px;
  padding: 24px 16px 80px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  width: 100%;
}

/* .stack removed (unused) */


.section__title {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}

.montserrat { font-family: var(--font-heading); }
/* precise line-height for Montserrat titles per Figma (approx 1.219) */
/* .section__title.montserrat { line-height: 1.219; } */
/* .hero__title.montserrat { line-height: 1.219; } */












/* News feature and list (Tin tức) */

.news__row {
  display: flex;
  gap: 50px;
  max-width: 1170px;
  width: 100%;
}

.news__feature {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 22px 74px 0px rgba(218, 218, 218, 0.33);
  border: 1px solid rgba(233, 233, 233, 1);
  padding: 16px;
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news__image {
  width: 100%;
  height: 450px;
  background-size: cover;
  /*background-position: center;*/
  border-radius: 10px;
}

.news__meta {
  margin-top: 24px;
}

.news__meta h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #242424;
  line-height: 1.4;
}

.news__meta p {
  margin: 0 0 16px;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
}

.news__link {
  color: #FE8432;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.news__link:hover {
  color: #F5A951;
}

.news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}


.news__card {
  display: flex;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #E9E9E9;
  padding: 16px;
  gap: 16px;
}

.news__card:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.news__card-image {
  width: 120px;
  height: 120px;
  background-size: cover;
  /*background-position: center;*/
  flex-shrink: 0;
  border-radius: 10px;
}

.news__card-content {
  flex: 1;
}

.news__card-content h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #242424;
  line-height: 1.4;
  text-transform: lowercase;
}
.news__card-content h4::first-letter {
  text-transform: uppercase;
}

.news__card-content p {
  margin: 0 0 12px;
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.5;
}

.news__card-link {
  color: #FE8432;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  align-self: flex-end;
  transition: color 0.2s ease;
}

.news__card-link:hover {
  color: #F5A951;
}



/* Timeline Styles */
.timeline-container {
  width: 100%;
  max-width: 1170px;
  margin-top: 100px;
  overflow-x: auto;
  display: flex;
  gap: 76px;
  padding: 5px 15px 5px 15px ;
  /* padding: 40px 20px; */
}

.timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 38px;
  animation-duration: 15s ;
  animation-iteration-count: infinite ;
  animation-name: scroll-timeline ;
  animation-timing-function: linear ;
  min-width: max-content;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #CDCDCD 0px,
    #CDCDCD 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 1;
  width: calc(100% + 30px);
}

.timeline-item:last-child::before {

  width: calc(100%);
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  max-width: 279px;
  z-index: 2;
  width: 100%;
}

.timeline-year {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
  box-shadow: 0px 8px 20px -4px rgba(154, 167, 193, 0.7);
}

.timeline-dot::before {
  content: '';
  width: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 16px;
  background: #F5A951;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 4;
  display: block;
}

.timeline-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 279px;
  min-height: 112px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #E9E9E9;
}

.timeline-content p {
  margin: 0;
  color: #3C3C3C;
  font-size: 14px;
  line-height: 20px;
}


/* marquee-container and .marquee-content removed (unused) */

@keyframes scroll-left {
  0% {
  transform: translateX(0%); /* Start position */
  }
  100% {
  transform: translateX(calc(-100% + 30px)); /* Move by half the content width (since we duplicate) */
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* .aspect-ratio-box removed (unused) */

.collection-tab {
  /* border: 1px solid #E9E9E9; */
  /* background: #fff; */
  padding: 9px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  line-height: 24px;
}

.collection-tab[aria-selected="true"] {
  background: #FE8432;
  color: white;
  box-shadow: 0px 12px 20px -10px rgba(254, 132, 50, 0.3);
  border: 1px solid #FE8432;
}

/* removed demo carousel/button styles (unused) */

.carousel-btn {
  background-color: #F5A951;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.carousel-btn[disabled] {
  background-color: #CECECE;
}

/* Custom classes for long Tailwind combinations */
.category-badge {
  border-radius: 222px;
  background: #FFF3EB;
  padding: 6px 24px;
  color: #FE8432;
  font-weight: 600;
  font-size: 16px;
  width: fit-content;
}

.product-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 243/273;
  max-width: 243px;
  max-height: 273px;
  margin: 0 auto;
  object-fit: contain;
}

.social-card {
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #E9E9E9;
  background: white;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex-shrink: 0;
  position: relative;
}

.social-card--last {
  margin-right: 135px;
}

.partner-pill {
  margin: 0 auto;
  width: fit-content;
  border-radius: 222px;
  background: #FFF3EB;
  padding: 12px 32px;
  color: #FE8432;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
}

.partner-pill--spaced {
  margin-top: 68px;
}

.partner-image {
  padding: 20px;
  border-radius: 50%;
  box-shadow: var(--image-shadow);
  object-fit: cover;
  width: 220px !important;
  height: 220px;
}

.tech-card {
  border-radius: 8px;
  background: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news-link {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.hero-decorator {
  width: 179px;
  position: absolute;
  bottom: -12px;
  left: calc(50% + 24px);
  transform: translateX(50%);
}

.hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1464px;
  width: 100%;
}

.hero-content {
  max-width: 539px;
  padding-left: 24px;
}

.hero-image {
  position: relative;
  aspect-ratio: 1.031;
  width: 100%;
}

.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-section {
  max-width: 1398px;
  margin: 0 auto;
  padding: 120px 0;
}

.hero-title-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.collection-section {
  max-width: 1398px;
  margin: 0 auto;
  padding: 24px;
}

/* .collection-tabs removed (unused) */

/* .carousel-container removed (unused) */

/* duplicate .carousel-wrapper removed (unused) */

.product-card {
  border-radius: 10px;
  padding: 16px;
  background: white;
  border: 1px solid #E9E9E9;
  width: 100%;
  max-width: 275px;
  flex-shrink: 0;
}
/* old news-section/header/title removed (unused) */

.social-section {
  max-width: 1218px;
  margin: 0 auto;
  padding: 0 24px;
}

.social-content {
  max-width: 511px;
}

.social-buttons {
  display: flex;
  margin-top: 56px;
  gap: 24px;
}

/* social-button variants removed (unused) */

.social-cards {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  margin-bottom: 120px;
}

.tech-section {
  background: url(assets/technology-bg.png);
  width: 100%;
  padding: 120px 0;
}

.tech-container {
  max-width: 1218px;
  margin: 0 auto;
  padding: 0 24px;
}

.tech-header {
  margin-bottom: 46px;
}

.tech-title {
  color: white !important;
}

.tech-grid {
  display: flex;
  margin-top: 58px;
  gap: 30px;
}

.partners-section {
  padding-top: 120px;
  max-width: 1170px;
  width: 100%;
}

.partners-header {
  margin-bottom: 46px;
}

.partners-marquee {
  margin: 0 auto;
  max-width: 1398px;
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  gap: 30px;
  position: relative;
}
.partners-before-decorator {
  position: absolute;
  top: 0;
  left: 0;
  width: 194px;
  height: 100%;
  width: 194;
  height: 314px;
  left: -0.5px;
  z-index: 1;
  transform: rotate(-180deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 35.31%, #FFFFFF 92.16%);
}
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 194px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 35.31%, #FFFFFF 92.16%);
}
.partners-marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 194px;
  height: 100%;
  width: 194;
  height: 314px;
  left: -0.5px;
  z-index: 1;
  transform: rotate(-180deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 35.31%, #FFFFFF 92.16%);
}
.partners-marquee:hover .partners-grid {
  animation-play-state: paused;
}
.partners-marquee:hover {
  overflow-x: auto;
}

.partners-grid {
  display: inline-flex;
  animation: scroll-left infinite 15s linear;
  gap: 30px;
}

.partner-item {
  max-width: 270px;
  min-width: 270px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-item img {
  transition: transform 0.3s ease;
}

.partner-name {
  color: #353945;
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
}

.partner-title {
  color: #817D7D;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

.global-section {
  max-width: 1218px;
  margin: 0 auto;
  padding: 0 24px;
  padding: 120px 0;
}

.global-header {
  margin-bottom: 68px;
}

.cta-section {
  width: 100%;
  background: url(assets/request-background.png);
  padding: 68px 0px 100px;
}

.cta-container {
  display: flex;
  gap: 80px;
  max-width: 1218px;
  padding: 0 24px;
  justify-content: space-between;
  margin: 0 auto;
}

.cta-content {
  max-width: 503px;
}

.cta-title {
  font-weight: 700;
  font-size: 32px;
  color: white;
}

.cta-description {
  font-size: 18px;
  color: white;
  margin-top: 14px;
}

.cta-form {
  background: white;
  border-radius: 10px;
  padding: 8px 8px 8px 24px;
  display: flex;
  gap: 24px;
  margin-top: 14px;
}

.cta-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cta-input {
  color: #242424;
  font-size: 16px;
  outline: none;
  width: 100%;
  border: none;
}

.cta-button {
  flex-shrink: 0;
  background: #013557;
  font-size: 16px;
  color: white;
  border-radius: 10px;
  padding: 14px 24px;
}

.cta-divider {
  width: 1px;
  background: white;
  opacity: 0.15;
}

.cta-social {
  margin-top: 44px;
  display: flex;
  gap: 14px;
}

.footer {
  width: 100%;
}

.footer-container {
  max-width: 1218px;
  padding: 40px 24px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  width: 172px;
}

.footer-description {
  color: #686B6B;
  font-size: 16px;
  margin-top: 24px;
}

.footer-social {
  display: flex;
  margin-top: 24px;
  gap: 14px;
}

.footer-links {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 24px
}

.footer-link {
  color: #242424;
  font-size: 16px;
  font-weight: 600;
}

.footer-policies {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-policy-title {
  color: #242424;
  font-size: 16px;
  font-weight: 600;
}

.footer-policy-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-policy-dot {
  width: 8px;
  height: 8px;
  background: #013557;
}

.footer-policy-text {
  color: #242424;
  font-size: 16px;
}

.footer-contact {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
}

.footer-contact-text {
  color: #686B6B;
  font-size: 16px;
}

.footer-copyright {
  background: #F4F5F7;
  padding: 12px;
  color: #686B6B;
  font-size: 16px;
  text-align: center;
}
.product-list {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.seo-article {
  background-color: var(--color-gray-2);
  padding: 24px;
}

/* Minimal utility bridges: keep only non-standard helpers; rely on Tailwind for the rest */
.z-31 { z-index: 31; }

/* Carousel fallbacks (ensure Flowbite works even if Tailwind isn't loaded yet) */
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded-lg { border-radius: 0.5rem; }
.duration-700 { transition-duration: 700ms; }
.ease-in-out { transition-timing-function: ease-in-out; }
.h-\[474px\] { height: 474px; }
.max-w-\[1350px\] { max-width: 1350px; }
@media (min-width: 1024px) {
  .lg\:h-96 { height: 24rem; }
}
/* Line clamp */
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Screen reader only */
/* .sr-only removed (unused) */

/* Group utilities */
.group:focus .group\:focus\:outline-none:focus { outline: none; }

/* Custom positioning */
.left\:calc\(50\%\+24px\) { left: calc(50% + 24px); }

/* Text utilities */
.text-left\! { text-align: left !important; }

/* Custom semantic classes to replace common Tailwind combinations */
.header-logo {
  width: 103px;
  height: 1.5rem;
}


.hero-banner-image {
  max-width: 327px;
  margin-top: 1.5rem;
}


.hero-title-text {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
}


.decorator-image {
  width: 120px;
  margin: 0 auto;
}


.product-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #242424;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}

.carousel-button {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  outline: none;
}

.carousel-button--prev {
  left: 0;
}

.carousel-button--next {
  right: 0;
}

.arrow-icon {
  width: 9px;
  height: 20px;
}

.arrow-icon--rotated {
  transform: rotate(180deg);
  width: 9px;
  height: 20px;
}

.news-arrow {
  height: 11px;
  width: 1.25rem;
}

.social-icon {
  width: 2rem;
  height: 2rem;
}


.footer-icon {
  width: 2rem;
  height: 2rem;
}

/* .partner-image-large removed (unused) */

/* ============================================
RESPONSIVE CSS - ALL MEDIA QUERIES BELOW
============================================ */

/* Navigation responsive */
@media (min-width: 960px) {
  .nav { display: flex; }
}

/* Timeline responsive adjustments */
@media (max-width: 768px) {
  .timeline {
    /* flex-direction: column; */
    align-items: center;
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    min-width: auto;
    width: 100%;
    /* max-width: 300px; */
  }

  .timeline-content {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .timeline-container {
    /* padding: 30px 0px; */
    /* margin: 40px auto; */
    max-width: 100vw;
    margin: 24px 0px 56px;
  }

  .timeline-year {
    font-size: 24px;
  }
  .timeline-item::before {
    top: 52px;
  }
}

/* Main responsive breakpoint */
@media (max-width: 1024px) {
  .header__inner {
    padding: 0px 16px;
    height: 50px;
    border-bottom: 1px solid #DEDEDE;
  }

  /* Show hamburger menu and hide regular nav on mobile */
  .hamburger-btn {
    display: flex;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
  .hero-banner {
    flex-direction: column;
  }
  .hero-content {
    max-width: unset;
    padding: 24px;
    width: 100%;
  }
  .category-badge {
    font-size: 14px;
  }
  .hero-section {
    padding: 50px 0px;
  }
  .hero-decorator {
    width: 120px;
  }
  .footer-copyright {
    font-size: 14px;
    padding: 10px;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
  }
  .footer-logo {
    width: 137px;
  }
  .footer-description {
    font-size: 14px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .footer-policy-text {
    font-size: 14px;
  }
  .footer-contact-text {
    font-size: 14px;
  }
  .cta-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .cta-section {
    padding: 16px 0px 24px;
  }
  .cta-divider {
    width: 100%;
    height: 2px;
  }
  .cta-title {
    font-size: 20px;
  }
  .cta-description {
    font-size: 14px;
  }
  .tech-grid {
    display: flex;
    flex-direction: column;
  }
  .cta-form {
    flex-direction: column;
    padding: 16px;
  }
  .cta-button {
    font-size: 14px;
    padding: 10px;
  }
  .cta-social {
    margin-top: 16px;
  }
  .global-section {
    padding: 50px 0px;
  }
  .section__title {
    font-size: 24px;
  }
  .global-header {
    margin-bottom: 32px;
  }
  .tech-section {
    padding: 32px 0px 16px;
  }
  .tech-container {
    padding: 0px 16px;
  }
  .tech-header {
    margin-bottom: 24px;
  }
  .tech-grid {
    margin-top: 24px;
  }
  .hero-decorator {
    transform: unset;
  }
  .collection-section {
    padding: 0px 16px;
  }
  .carousel-btn {
    display: none;
  }
  .product-list {
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px;
  }
  .product-card {
    max-width: 164px;
    padding: 12px;
  }
  .product-image {
    aspect-ratio: 139 / 150;
    max-width: 139px;
    max-height: 150px;
  }
  .product-text {
    font-size: 12px;
  }
  .news__row {
    flex-direction: column;
    gap: 32px;
  }
  .news__image {
    height: 250px;
  }
  .news__meta h3 {
    font-size: 16px;
  }
  .news__card {
    padding: 9px;
  }
  .news__card-image {
    width: 98px;
    height: 98px;
  }
  .news__card-content h4 {
    font-size: 12px;
    text-transform: uppercase;
  }
  .news__card-content p {
    font-size: 12px;
  }
  .news__card-link {
    font-size: 12px;
  }
  .social-section {
    padding: 0px 16px;;
  }
  .social-cards {
    flex-direction: column;
    overflow-x: unset;
  }
  .social-card-content {
    display: flex;
    gap: 12px;
  }
  .social-card-content img {
    width: 98px;
    height: 98px;
  }
  .social-card-content p {
    margin-top: 0px;
    font-size: 12px;
  }
  .social-card {
    max-width: unset;
  }
  .social-link {
    position: absolute;
    position: absolute;
    bottom: 16px;
    right: 16px;
  }
  .partners-marquee {
    max-width: 100vw;
    gap: 12px;
    margin-top: 16px;
  }
  .partners-marquee::before {
    display: none;
  }
  .partners-marquee::after {
    display: none;
  }
  .partners-section {
    padding-top: 50px;;
  }
  .partners-header {
    margin-bottom: 32px;
  }
  .partner-pill {
    font-size: 14px;
    padding: 6px 32px;
  }
  .partner-item {
    width: 150px;
    min-width: auto;
  }
  .partner-image {
    width: 120px !important;
    min-width: auto;
    height: 120px;
    padding: 10px;
  }
  .partner-name {
    font-size: 14px;
    margin-top: 16px;
  }
  .partner-title {
    font-size: 12px;
    margin-top: 8px;
  }
  .partners-grid {
    gap: 12px;
  }
  .partner-pill--spaced {
    margin-top: 50px;
  }
  .seo-article {
    padding: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

}

/* Responsive utilities */
@media (min-width: 1024px) {
  .lg\:w-\[137px\] { width: 137px; }
  .lg\:h-8 { height: 2rem; }
  .lg\:max-w-\[515px\] { max-width: 515px; }
  .lg\:text-\[18px\] { font-size: 18px; }
  .lg\:text-\[52px\] { font-size: 52px; }
  .lg\:w-\[179px\] { width: 179px; }
  .lg\:mb-11 { margin-bottom: 2.75rem; }
  .lg\:mt-14 { margin-top: 3.5rem; }
  .lg\:h-96 { height: 24rem; }
  .lg\:pl-0 { padding-left: 0; }
  .lg\:w-\[52px\] { width: 52px; }
  .lg\:h-\[52px\] { height: 52px; }
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:text-2xl { font-size: 1.5rem; }
  .lg\:text-base { font-size: 1rem; }
}

/* Header logo responsive */
@media (min-width: 1024px) {
  .header-logo {
    width: 137px;
    height: 2rem;
  }
}

/* Hero banner image responsive */
@media (min-width: 1024px) {
  .hero-banner-image {
    max-width: 515px;
  }
}

/* Hero title text responsive */
@media (min-width: 1024px) {
  .hero-title-text {
    font-size: 52px;
  }
}

/* Decorator image responsive */
@media (min-width: 1024px) {
  .decorator-image {
    width: 179px;
  }
}

/* Social icon responsive */
@media (min-width: 1024px) {
  .social-icon {
    width: 52px;
    height: 52px;
  }
}

@keyframes scroll-timeline {
  0% {
  transform: translateX(0%); /* Start position */
  }
  100% {
  transform: translateX(calc(-100% - 76px)); /* Move by half the content width (since we duplicate) */
  }
}

@media (max-width: 1170px) {
  .timeline-container {
    max-width: 100vw;
  }
  .partners-marquee {
    max-width: 100vw;
  }
}

.hover-card {
  transition: box-shadow 0.3s ease;
}

.hover-card:hover {
  box-shadow: 0px 22px 74px 0px rgba(218, 218, 218, 0.33);
}

.partner-item:hover img {
  transform: scale(1.05);
}

.page-item {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #767676;
  align-items: center;
  border-radius: 2px;
}

.page-item.active {
  color: white;
  background-color: #FE8432;
}

/* ============================================
COMMON PAGE BANNER STYLES
============================================ */

/* Common banner section - used across contact, news, haribito, social-network, product pages */
.page-banner-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/500;
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Common banner title styles */
.page-banner-title {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-size: 64px;
  line-height: 98px;
  text-align: center;
  color: var(--color-gray-1);
}

/* Common banner decorator - positioned absolutely inside banner */
.page-banner-decorator {
  position: absolute;
  width: 300px;
  height: 37px;
  bottom: -12px;
}

/* Common product title decorator */
.page-product-title-decorator {
  position: absolute;
  width: 179px;
  height: 18px;
  right: 50%;
  transform: translateX(50%);
}

/* ============================================
COMMON BREADCRUMB STYLES
============================================ */

.page-breadcrumb {
  display: flex;
  gap: 8px;
}

.page-breadcrumb-item {
  list-style: none;
  font-size: 12px;
  font-weight: 400;
}

.page-breadcrumb-item.active {
  font-weight: 600;
  color: var(--color-gray-9);
  text-transform: capitalize;
}

.page-breadcrumb-link {
  text-decoration: none;
  color: var(--color-gray-6);
}

/* ============================================
COMMON PRODUCT PAGE STYLES
============================================ */

/* Common product title */
.page-product-title {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
  text-align: center;
  color: var(--color-primary);
}

/* Common product list content wrapper */
.page-product-list-content {
  width: 100%;
  max-width: 1202px;
  padding: 24px 16px 80px;
}

/* Common product filter styles */
.page-product-filter-content {
  margin-top: 24px;
}

.page-product-filter-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray-10);
}

.page-product-filter-item {
  padding: 12px 12px 12px 0px;
  display: block;
}

.page-product-filter-item-title {
  display: flex;
  align-items: center;
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  gap: 8px;
}

.page-product-filter-item .page-product-filter-item-title {
  font-size: 16px;
}

.page-title-square {
  background-color: var(--color-primary);
  width: 8px;
  height: 8px;
}

.page-product-filter-container {
  max-width: 270px;
  flex-shrink: 0;
  width: 100%;
}

.page-product-filter-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Common product item card */
.page-product-item {
  border-radius: 10px;
  padding: 16px;
  background: white;
  border: 1px solid #E9E9E9;
  width: 100%;
  flex-shrink: 0;
}

.page-product-item-image {
  width: 100%;
  aspect-ratio: 238/272;
  max-width: 238px;
  max-height: 272px;
  margin: 0 auto;
  object-fit: contain;
}

/* Common SEO article styles */
.page-seo-article {
  background-color: var(--color-gray-2);
  padding: 24px;
}

.page-seo-article-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gray-10);
  margin-bottom: 16px;
}

.page-seo-article p {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--color-gray-10);
}

h1 { font-size: 1.5rem; line-height: 1.3; }
h2 { font-size: 1.35rem; line-height: 1.3; }
h3 { font-size: 1.15rem; line-height: 1.35; }
h4 { font-size: 1.05rem; line-height: 1.4; }

@media (max-width: 767px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  h4 { font-size: 1rem; }
}

/* ============================================
COMMON PAGE BANNER RESPONSIVE STYLES
============================================ */

@media (max-width: 767px) {
  .page-banner-section {
    aspect-ratio: 375/320;
    max-height: 320px;
    padding: 0px 24px;
    align-items: flex-start;
  }

  .page-banner-title {
    font-size: 32px;
    line-height: 100%;
    text-align: left;
  }

  .page-banner-decorator {
    width: 153px;
    height: 19px;
    bottom: -13px;
  }

  .page-product-title {
    font-size: 24px;
  }

  .page-product-title-decorator {
    width: 122px;
    height: 12px;
    margin-top: 2px;
  }

  .page-product-list-content {
    padding: 16px 16px 50px;
  }
}

/* Owl Carousel Styles for Partners Carousel */
.partners-carousel {
  position: relative;
  max-width: 1398px;
  margin: 0 auto;
}


.partners-carousel .item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-carousel .owl-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.partners-carousel .owl-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  margin: 0;
  border: none;
  background-color: #F5A951 !important;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
}

.partners-carousel .owl-nav button:hover {
  background-color: #FE8432 !important;
}

.partners-carousel .owl-nav button:disabled {
  background-color: #CECECE !important;
}

.partners-carousel .owl-nav .owl-prev,
.partners-carousel .owl-nav .owl-next {
  background-color: #F5A951 !important;
}

.partners-carousel .owl-nav .owl-prev {
  left: 0;
}

.partners-carousel .owl-nav .owl-next {
  right: 0;
}

/* Style the arrow images inside the buttons */
.partners-carousel .owl-nav button img {
  width: 9px;
  height: 20px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.partners-carousel .owl-nav button .arrow-icon,
.partners-carousel .owl-nav button .arrow-icon--rotated {
  width: 9px;
  height: 20px;
  display: block;
  margin: 0 auto;
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
  .partners-carousel .owl-nav {
    display: none !important;
  }

  .partners-carousel .owl-nav button {
    display: none !important;
  }
}
