@charset "UTF-8";
.section_tab_collection {
  position: relative;
  /* Hero Section */
  /* Filter Navigation */
  /* Product Grid */
  /* Style cho scrollbar trên Chrome/Safari/Edge */
  /* Style cho Firefox */
  /* Product Card */
  /* Info Section */
  /* Responsive Design */
  /* Background effect khi hover */
  /*
	.product-card::before {
	content: '';
	position: absolute;
	top: 70%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: #FFDD00;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
	z-index: 0;
}

	.product-card:hover::before {
	width: 100%;
	height: 78%;
	border-radius: 0;
}
	*/
  /* Hiệu ứng mượt mà cho text và specs */
  /* Animation cho background khi hover */
  /* Thêm hiệu ứng active khi click */
  /* Disable button styles */ }
  .section_tab_collection .hero-section {
    background-color: #ffdd00;
    min-height: 310px;
    margin-bottom: 10px;
    padding: 20px 10px 10px;
    display: flex;
    flex-direction: column; }
  .section_tab_collection .hero-content {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px; }
  .section_tab_collection .hero-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 72px;
    margin: 24px 0;
    color: black; }
  .section_tab_collection .filter-nav {
    padding: 10px; }
  .section_tab_collection .filter-container {
    display: flex;
    flex-direction: column;
    width: 100%; }
  .section_tab_collection .filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
    padding-left: 18px;
    list-style: none;
    gap: 10px; }
  .section_tab_collection .filter-item {
    border: 2px solid black;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; }
  .section_tab_collection .filter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: transform 0.3s ease;
    z-index: -1; }
  .section_tab_collection .filter-item:hover::before {
    transform: translateX(100%); }
  .section_tab_collection .filter-item:hover {
    background-color: black;
    color: white; }
  .section_tab_collection .filter-item--active {
    background-color: black;
    color: white; }
  .section_tab_collection .filter-controls {
    position: absolute;
    right: 60px;
    top: 60px; }
  .section_tab_collection .control-btn {
    background-color: black;
    padding: 20px;
    border: none;
    cursor: pointer;
    display: inline-block; }
  .section_tab_collection .control-btn--prev, .section_tab_collection .control-btn--next {
    opacity: 0.2; }
  .section_tab_collection .control-btn--prev:hover, .section_tab_collection .control-btn--next:hover {
    opacity: 1;
    background: #404040; }
  .section_tab_collection .control-icon {
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    display: inline-block;
    padding: 5px; }
  .section_tab_collection .control-icon--prev {
    transform: rotate(135deg); }
  .section_tab_collection .control-icon--next {
    transform: rotate(-45deg); }
  .section_tab_collection .product-grid {
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    z-index: 1; }
  .section_tab_collection .grid-container {
    display: flex;
    gap: 20px;
    max-width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    transition: opacity 0.3s ease; }
  .section_tab_collection .grid-container::-webkit-scrollbar {
    height: 8px; }
  .section_tab_collection .grid-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px; }
  .section_tab_collection .grid-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px; }
  .section_tab_collection .grid-container::-webkit-scrollbar-thumb:hover {
    background: #555; }
  .section_tab_collection .grid-container {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1; }
  .section_tab_collection .product-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    min-width: 17%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    transition: all 0.3s ease; }
    @media (max-width: 767px) {
      .section_tab_collection .product-card {
        min-width: 35%;
        padding: 10px; } }
    .section_tab_collection .product-card .product-card__hover-bg {
      background-color: #ffdd00;
      border-radius: 1000px;
      height: 0;
      left: 50%;
      position: absolute;
      top: 0;
      transition: 0.35s;
      width: 0;
      z-index: 1; }
    .section_tab_collection .product-card:hover .product-card__hover-bg {
      position: absolute;
      top: 100%;
      left: 50%;
      -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
      transform: translate(-50%, -100%);
      height: 65%;
      width: 100%;
      border-radius: 0;
      background: #fd0; }
  .section_tab_collection .product-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0px;
    width: 100%;
    z-index: 5;
    position: relative; }
  .section_tab_collection .product-card__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: top;
    transition: transform 0.3s ease; }
  .section_tab_collection .product-card__logo {
    align-self: flex-start;
    height: 20px;
    margin-top: 30px;
    width: 52px; }
  .section_tab_collection .product-card__logo-link {
    margin: 30px 0px 30px 0px;
    font-weight: bold;
    height: 42px;
    overflow: hidden; }
  .section_tab_collection .product-card__tagline {
    margin: 30px 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease; }
  .section_tab_collection .tagline-text {
    font-size: 16px;
    line-height: 27px;
    margin: 0; }
  .section_tab_collection .product-card__specs {
    padding-bottom: 30px;
    width: 80%;
    list-style: none;
    padding-left: 0; }
    .section_tab_collection .product-card__specs li {
      border-bottom: 2px solid #f1f2f2;
      padding: 8px 0; }
  .section_tab_collection .product-card__cta {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: auto;
    text-decoration: underline;
    text-transform: uppercase;
    color: #0a0203;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease; }
  .section_tab_collection .product-card:hover .product-card__cta {
    color: #000;
    text-decoration: underline; }
  .section_tab_collection .info-section {
    margin: 0 auto;
    max-width: 1450px; }
  .section_tab_collection .info-container {
    display: flex;
    margin: 50px 0;
    overflow: hidden;
    padding: 10px; }
  .section_tab_collection .info-arrows {
    width: 8%;
    display: flex;
    flex-direction: column; }
  .section_tab_collection .arrow-icon {
    width: 100px;
    fill: #ffdd00; }
  .section_tab_collection .arrow-icon--offset {
    width: 80px;
    margin-top: 60px; }
  .section_tab_collection .info-content {
    width: 67%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 50px 0;
    padding: 10px; }
  .section_tab_collection .info-title {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 56px;
    text-align: center;
    text-transform: uppercase;
    color: #ffdd00;
    margin: 24px 0; }
  .section_tab_collection .info-text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px; }
  .section_tab_collection .info-cta {
    margin: 32px 10px;
    text-align: center; }
  .section_tab_collection .cta-button {
    background-color: #ffdd00;
    border: 2px solid #ffdd00;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin: 12px;
    padding: 15px 25px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    text-decoration: none;
    color: black; }
  @media (max-width: 768px) {
    .section_tab_collection .hero-title {
      font-size: 40px;
      line-height: 48px; }
    .section_tab_collection .info-title {
      font-size: 48px;
      line-height: 40px; }
    .section_tab_collection .filter-controls {
      position: static;
      text-align: center;
      margin-top: 20px; }
    .section_tab_collection .info-container {
      flex-direction: column; }
    .section_tab_collection .info-arrows {
      width: 100%;
      flex-direction: row;
      justify-content: center;
      gap: 20px; }
    .section_tab_collection .info-content {
      width: 100%; }
    .section_tab_collection .filter-list {
      flex-direction: row;
      overflow-x: auto;
      justify-content: flex-start;
      padding: 10px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none; }
    .section_tab_collection .filter-list::-webkit-scrollbar {
      display: none; }
    .section_tab_collection .filter-item {
      flex: 0 0 auto; } }
  .section_tab_collection .product-card__specs li {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease; }

@keyframes expandBackground {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0; }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; } }
  .section_tab_collection .control-btn:active {
    transform: scale(0.95); }
  .section_tab_collection .control-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed; }
  .section_tab_collection .filter-counter {
    font-size: 14px; }
  .section_tab_collection .filter-item--active .filter-counter {
    opacity: 1; }

.hero-banner {
  position: relative;
  overflow: hidden;
  max-height: 599px; }
  .hero-banner .banner-slider {
    height: 100%; }
  .hero-banner .banner-item {
    position: relative;
    height: 100%;
    width: 100%; }
    .hero-banner .banner-item video,
    .hero-banner .banner-item img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.lens-showcase {
  background-image: url("https://file.hstatic.net/200000874831/file/lens-1-xl.webp");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 700px;
  padding: 10px; }
  .lens-showcase .lens-showcase-container {
    align-self: stretch;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    flex-flow: row wrap; }
  .lens-showcase .content-wrapper {
    display: flex;
    width: 100%; }
  .lens-showcase .spacer-left {
    align-self: stretch;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    width: 8%; }
  .lens-showcase .content-area {
    align-self: stretch;
    background-color: rgba(0, 0, 0, 0.4);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    width: 33%; }
    @media (max-width: 767px) {
      .lens-showcase .content-area {
        width: 100%; } }
  .lens-showcase .title-container {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 20px 20px 5px; }
  .lens-showcase .heading-text {
    color: white;
    font-weight: 700;
    margin-bottom: 10px; }
  .lens-showcase .heading-strong {
    color: white;
    display: inline;
    font-weight: 600; }
  .lens-showcase .heading-span {
    color: white;
    font-size: 52px;
    font-weight: 600;
    line-height: 52px; }
  .lens-showcase .description-container {
    color: white;
    padding: 0 20px 20px; }
  .lens-showcase .description-text {
    color: white;
    margin-bottom: 10px; }
  .lens-showcase .description-content {
    color: white;
    display: inline;
    font-size: 16px;
    line-height: 27px; }
  .lens-showcase .inline-link {
    color: white;
    cursor: pointer;
    font-size: 16px;
    line-height: 27px;
    text-decoration: underline; }
  .lens-showcase .cta-container {
    margin-bottom: 32px;
    padding: 10px 10px 0;
    text-align: left; }
  .lens-showcase .cta-wrapper {
    display: inline-block;
    text-align: left; }
  .lens-showcase .cta-button {
    background-color: #ffdd00;
    border: 1.6px solid #ffdd00;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin: 12px;
    min-width: 160px;
    padding: 15px 25px;
    text-align: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    vertical-align: middle; }
  .lens-showcase .cta-text {
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase; }
  .lens-showcase .spacer-middle {
    align-self: stretch;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    width: 8%; }
  .lens-showcase .spacer-right {
    align-self: stretch;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    width: 50%; }

.future-section {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 50px; }

.text-content {
  width: 42%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 10px;
  text-align: center; }

.section-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  text-align: center;
  margin-bottom: 20px; }

.section-description {
  font-size: 16px;
  line-height: 24px;
  text-align: center; }

.image-section {
  margin: 0 auto;
  max-width: 933px; }

.image-container {
  text-align: center;
  position: relative;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10px 10px; }

.main-image {
  max-width: 100%;
  display: inline-block;
  vertical-align: top; }

.mount-section {
  margin: 0 auto;
  overflow: hidden; }

.mount-section .section-title {
  font-size: 56px;
  color: #000000; }

.mount-section .section-description {
  color: #000000;
  line-height: 27px; }

@media (max-width: 768px) {
  .text-content {
    width: 100%; }
  .feature-title, .section-title {
    font-size: 48px;
    line-height: 1.2; } }
