/* Start Section Slider */
/* ============================= */

/* ============================================================
   GLOBAL SLICK ARROWS (UNIFIED STYLE)
   ============================================================ */
.slick-has-nav {
  position: relative;
}

/* Base styles for arrows */
/* .slick-has-nav .slick-prev,
.slick-has-nav .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff !important;
  color: #1a1a1a;
  border-radius: 50%;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  z-index: 50;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0;
  outline: none;
}

.slick-has-nav .slick-prev::before,
.slick-has-nav .slick-next::before {
  display: none !important;
}

.slick-has-nav .slick-prev svg,
.slick-has-nav .slick-next svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.slick-has-nav .slick-prev:hover,
.slick-has-nav .slick-next:hover {
  background: #FFFFFF !important;
  color: #fff;
  box-shadow: 0 12px 30px rgba(200, 169, 110, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.slick-has-nav .slick-prev:hover svg {
  transform: translateX(-2px);
}

.slick-has-nav .slick-next:hover svg {
  transform: translateX(2px);
} */

/* Positioning */
/* .slick-has-nav .slick-prev {
  left: -22px;
}

.slick-has-nav .slick-next {
  right: -22px;
} */

/* Adjustments for sections where arrows should be inside or have different spacing */
.ks-right .slick-prev {
  left: auto;
  right: 58px;
  top: auto;
  bottom: 14px;
  transform: none;
}

.ks-right .slick-next {
  right: 14px;
  top: auto;
  bottom: 14px;
  transform: none;
}

/* ============================================================ */

.slider-section {
  position: relative;
  width: 100%;
  height: 96vh;
  /* Premium height */
  overflow: hidden;
  background: #000;
}

@media (max-width: 992px) {
  .slider-section {
    height: 86vh;
  }
}

@media (max-width: 768px) {
  .slider-section {
    height: 65vh;
  }
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper .slick-list,
.slider-wrapper .slick-track {
  height: 100%;
}

.slide-item {
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}

.slide-item img,
.slide-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
  /* For zoom effect */
}

.slider-wrapper .slick-active img,
.slider-wrapper.slick-active video {
  transform: scale(1.1);
  /* Subtle zoom in when active */
}

/* Overlay text */
.slide-item .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-content h2 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  opacity: 0;
  filter: blur(10px);
}

.slide-content p {
  font-size: clamp(14px, 3vw, 20px);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255);
  max-width: 850px;
  line-height: 1.6;
  opacity: 0;
  filter: blur(10px);
}

/* Enhanced Button Style */
.btn-view-all {
  /* display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em; */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3); */
  opacity: 0;
  filter: blur(10px);
}

/* .btn-view-all .arrow-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-view-all:hover .arrow-icon svg {
  color: #fff;
} */

/* Animation triggers */
.slick-active .slide-content h2 {
  animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.slick-active .slide-content p {
  animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.slick-active .btn-view-all {
  animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

@keyframes softEntrance {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
  }

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

/* Dark overlay */
.slide-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Navigation buttons (now using slick default unified styling instead of manual) */
.slider-section .slick-prev,
.slider-section .slick-next {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  opacity: 0;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
}

.slider-section:hover .slick-prev,
.slider-section:hover .slick-next {
  opacity: 1;
}

.slider-section .slick-prev:hover,
.slider-section .slick-next:hover {
  background: rgba(255, 255, 255, 0.4) !important;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-section .slick-prev {
  left: 40px;
}

.slider-section .slick-next {
  right: 40px;
}

@media (max-width: 768px) {

  .slider-section .slick-prev,
  .slider-section .slick-next {
    width: 44px;
    height: 44px;
  }

  .slider-section .slick-prev {
    left: 15px;
  }

  .slider-section .slick-next {
    right: 15px;
  }
}

/* Pagination - thanh dẹp ngang (Slick dots override) */
.slider-section .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  gap: 8px;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
}

.slider-section .slick-dots li {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  border-radius: 0;
  border: 0;
}

.slider-section .slick-dots li button {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3) !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  padding: 0;
  margin: 0;
  border: none;
  font-size: 0;
  box-shadow: none;
  line-height: 0;
  display: block;
}

.slider-section .slick-dots li button::before {
  display: none !important;
}

.slider-section .slick-dots li.slick-active button {
  background: #FFF !important;
  width: 80px;
}

@media (max-width: 575px) {
  .slider-section .slick-dots li button {
    width: 30px;
  }

  .slider-section .slick-dots li.slick-active button {
    width: 50px;
  }

  .slider-section .slick-dots {
    bottom: 20px;
  }
}

/* End section slider*/
/* ============================= */


/* ========== Danh mục nổi bật =========== */

/* ─── SECTION ─── */
.ks-section {
  padding: 64px 0;
  position: relative;
}

.ks-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(37 42 87 / 50%);
}

/* ─── HEADING ─── */
.ks-heading {
  text-align: center;
  margin-bottom: 52px;
}

.ks-eyebrow {
  font-size: 20px;
  color: #b89b6a;
  display: block;
  margin-bottom: 6px;
}

.ks-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  color: #1c1a16;
  display: inline-block;
  position: relative;
  padding-bottom: 24px;
}

/* wavy ribbon under title */
.ks-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 16'%3E%3Cpath d='M0 8 C15 2,30 14,45 8 S75 2,90 8 S120 14,135 8 S165 2,180 8' fill='none' stroke='%23b89b6a' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M10 12 C25 6,40 18,55 12 S85 6,100 12 S130 18,145 12 S170 6,180 12' fill='none' stroke='%23b89b6a' stroke-width='1' stroke-linecap='round' opacity='.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.zoom-slider-section .slick-has-nav .slick-prev {
  left: 10px;
}

.zoom-slider-section .slick-has-nav .slick-next {
  right: 10px;

}

.ks-desc {
  max-width: 540px;
  margin: 20px auto 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #7a7668;
  letter-spacing: .02em;
}

/* ─── LAYOUT ─── */
.ks-grid {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 24px;
}

/* ─── CARD BASE ─── */
.ks-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.ks-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}

.ks-card:hover img {
  transform: scale(1.06);
}

.ks-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 12, .72) 0%, rgba(0, 0, 0, .08) 60%);
  transition: background .4s;
}

.ks-card:hover .overlay {
  background: linear-gradient(to top, rgba(20, 18, 12, .82) 0%, rgba(0, 0, 0, .16) 65%);
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 30px 24px;
}

.brand-label {
  font-size: 18px;
  color: #FFF;
  display: block;
  margin-bottom: 2px;
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.card-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s;
}

.card-link::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: width .3s;
}

.ks-card:hover .card-link {
  color: #fff;
}

.ks-card:hover .card-link::after {
  width: 32px;
}

/* ─── LEFT (PARENT) CARD ─── */


.ks-parent::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-top: 1.5px solid #FFF;
  border-left: 1.5px solid #FFF;
  z-index: 2;
  opacity: .7;
  pointer-events: none;
}

.ks-parent .card-body {
  padding: 36px 36px 32px;
}

.ks-parent .brand-label {
  font-size: 22px;
}

.ks-parent .card-title {
  font-size: 40px;
}

/* ─── RIGHT PANEL ─── */
.ks-right {
  position: relative;
  overflow: hidden;
}

/* ─── SLICK OVERRIDES ─── */
/* Each slick slide holds a 2×2 grid */
/* .ks-right .slick-slider,
.ks-right .slick-list,
.ks-right .slick-track { height: 100%; } */

/* .ks-right .slick-slide > div { height: 100%; } */

.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  /* height: 100%; */
}

/* Sub cards */
/* .sub-card {
  min-height: 222px;
} */

.sub-card .card-body {
  padding: 16px 18px 14px;
}

.sub-card .brand-label {
  font-size: 14px;
}

.sub-card .card-title {
  font-size: 19px;
  margin-bottom: 7px;
}

.sub-card .card-link {
  font-size: 12px;
}

/* .ks-right .slick-dots li.slick-active button {
  background: #fff;
  transform: scale(1.35);
} */

/* Dots */
.ks-right .slick-dots {
  bottom: 20px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 6px;
}

.sub-grid .wrap-img {
  padding-bottom: 57%;
}

.ks-right .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.ks-right .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  padding: 0;
  transition: background .25s, transform .25s;
}

.ks-right .slick-dots li button::before {
  display: none;
}

.ks-right .slick-dots li.slick-active button {
  background: #fff;
  transform: scale(1.35);
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ks-parent .card-title {
    font-size: 32px;
  }

  .sub-grid {
    gap: 12px;
  }

  .ks-grid {
    gap: 20px;
  }

  .sub-card {
    min-height: 184px;
  }
}

@media (max-width: 768px) {
  .ks-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
  }

  .ks-parent .card-title {
    font-size: 26px;
  }

  .sub-grid {
    gap: 10px;
  }

  .ks-right {
    min-height: 340px;
  }

  .sub-card {
    min-height: 165px;
  }

  .ks-section {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .ks-title {
    padding-bottom: 20px;
  }

  .ks-title::after,
  .about-title::after,
  .features-title::after,
  .collection-title::after,
  .news-title::after {
    width: 130px;
  }

  .ks-parent .card-body {
    padding: 20px;
  }

  .ks-parent .card-title {
    font-size: 22px;
  }

  .ks-parent .brand-label {
    font-size: 17px;
  }

  .ks-parent::before {
    width: 28px;
    height: 28px;
    top: 10px;
    left: 10px;
  }

  .sub-grid {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .ks-right {
    min-height: 280px;
  }

  .sub-card {
    min-height: 136px;
  }

  .sub-card .card-title {
    font-size: 14px;
  }

  .sub-card .card-body {
    padding: 10px 12px;
  }

  .ks-divider {
    display: none;
  }

  .ks-stat-num {
    font-size: 26px;
  }
}

/* load animation */
.ks-heading {
  animation: fadeUp .7s ease both;
}

.ks-grid {
  animation: fadeUp .7s .18s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ========== Danh mục nổi bật =========== */

.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  inset: 0;
  background-color: #0000004f;
}

.hero-section-wrap {
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.hero-left {
  flex: 1 1 550px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  margin-top: 0;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #48aacc;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
} */

.hero-right {
  flex: 1 1 50%;
  width: 50%;
  min-width: 0;
}

.hero-product-slider .product-card {
  margin: 10px;
}

.hero-product-slider .slick-slide {
  margin: 0 6px;
}

.hero-product-slider .slick-list {
  margin: 0 -6px;
}

.product-card {
  background: #ffffff;
  padding: 15px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #48aacc;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-image {
  width: 100%;
  height: 180px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.4;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-category {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: #48aacc;
}

.price-old {
  color: #ccc;
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Slick arrows for hero slider moved to global */

/* Responsiveness */
@media (max-width: 1199px) {
  .hero-container {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 0px;
  }

  .hero-left {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  .hero-right {
    width: 100%;
    flex: 1 1 100%;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-product-slider .slick-prev {
    left: 0;
  }

  .hero-product-slider .slick-next {
    right: 0;
  }

  .hero-product-slider .slick-dots {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .product-image {
    height: 150px;
  }
}

/* Zoom Slider Section */
.zoom-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* margin-top: 80px; */
}

.zoom-slide {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  outline: none;
}

.zoom-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.zoom-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
  /* Long transition for smooth zoom */
}

/* Zoom effect when slide is active (Slick's class) */
.slick-current .zoom-slide-img img {
  transform: scale(1.15);
}

.zoom-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Light overlay */
  z-index: 2;
}

.zoom-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.zoom-slider-section .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.zoom-content-wrap {
  max-width: 600px;
  color: #fff;
  padding: 0 30px;
}

.zoom-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.zoom-sub::before,
.zoom-sub::after {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}



.zoom-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  transform: translateY(50px);
  opacity: 0;
}

.zoom-desc {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(50px);
  opacity: 0;
}

.zoom-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #FFFFFF;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
}

/* Animations for active slide content */
.slick-current .zoom-title {
  animation: fadeInUpZoom 0.8s ease forwards 0.3s;
}

.slick-current .zoom-desc {
  animation: fadeInUpZoom 1s ease forwards 0.5s;
}

.slick-current .zoom-btn {
  animation: fadeInUpZoom 1.2s ease forwards 0.7s;
}

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

@media (max-width: 768px) {
  .zoom-slide {
    height: 60vh;
  }

  .zoom-content-wrap {
    text-align: center;
    margin: 0 auto;
    padding: 0 15px;
  }

  .zoom-sub {
    justify-content: center;
  }
}

/* ========== About Section =========== */
.home-about-section {
  padding: 110px 0;
  /* background: #fdfaf5; */
  /* Light creamy background */
  position: relative;
  text-align: center;
  color: #FFF;
}

.home-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(37 42 87 / 50%);
}

.home-about-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.about-eyebrow {
  display: block;
  font-size: 24px;
  margin-bottom: 15px;
}

.about-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  display: inline-block;
  position: relative;
  padding-bottom: 24px;
}


.title-page {
  position: relative;
}

.title-page::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.title-page::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #252a57;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-desc {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #252a57;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.about-link-btn:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(200, 169, 110, 0.2);
}

.about-link-btn svg {
  transition: transform 0.3s ease;
}

.about-link-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .home-about-section {
    padding: 40px 0px;
  }

  .about-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
}



/* ========== Tin tức nổi bật =========== */
.home-news-section {
  padding: 50px 0;
  position: relative;
}

.home-news-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(37 42 87 / 50%);
}

.news-header {
  text-align: center;
  margin-bottom: 25px;
  color: #FFF;
}

.news-title {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
}

.news-divider {
  display: none;
}

.news-desc {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.news-slider .slick-slide {
  margin: 10px;
}

.news-slider .slick-list {
  margin: 0 -10px;
}

@media (max-width: 575px) {
  .news-header {
    margin-bottom: 20px;
  }

  .home-news-section {
    padding: 30px 0;
  }
}

/* ============================================================
   Section factory
============================================================ */

.section-factory {
  background-color: #00010B;
  color: #FFF;
}

.section-factory .section-title {
  padding: 30px 5% 20px;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 600;
  text-align: center;
}

.section-screen {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section-screen .box-wrapper {
  width: 100%;
  height: 100%;
}

.section-screen .media {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-screen .media:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 4;
}

.section-factory .media video {
  transition: all 1.5s;
  z-index: 3;
  object-fit: cover;
  transform: scale(1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.section-factory .content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 5;
  padding: 2% 5% 30px;
}

.section-factory .content .tbox .title {
  font-size: 22px;
  font-weight: 500;
  color: #fafafa;
  margin-bottom: 16px;
  text-align: center;
}

.section-factory .content .tbox .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin: auto;
}

.section-factory .content .tbox .list .card {
  border: 1px solid #D2CFD026;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
  border-radius: 2px;
  /* display: flex; */
  align-items: center;
  flex-direction: row;
  position: relative;
}

.section-factory .content .tbox .list .card .icon {
  width: 45px;
}

.section-factory .content .tbox .list .card .text {
  /* padding-left: 8px; */
  margin-top: 10px;
  font-size: 16px;
}

.section-factory .content .tbox .action {
  margin-top: 20px;
  text-align: center;
}

.section-factory .content .tbox {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .section-factory .content {
    padding: 2% 5% 60px;
  }

  .section-factory .content .tbox {
    max-width: 798px;
  }

  .section-factory .content .tbox .title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  /* .section-factory .content .tbox .list {
    width: 80%;
  } */

  .section-factory .content .tbox .action {
    margin-top: 48px;
  }
}

@media (max-width: 768px) {
  .section-factory .content .tbox .list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .section-factory .content .tbox .list {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-factory .content .tbox .list .card {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .section-factory .content .tbox .list .card .text {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .section-factory .content .tbox .title {
    font-size: 17px;
  }
}

/* ============================================================
   CATEGORY SHOWCASE (NEW SECTION)
   ============================================================ */
.category-showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .category-showcase {
    height: 80vh;
  }
}

.cs-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cs-bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 3s ease-in-out;
  transform: scale(1.05);
}

.cs-bg-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.cs-bg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.cs-content-wrapper {
  position: relative;
  z-index: 3;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.cs-info {
  position: relative;
  width: 100%;
  max-width: 650px;
  padding-top: 50px;
}

.cs-info-item {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  transition-delay: 0s;
}

.cs-info-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.cs-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: transform 0.6s ease;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cs-info-item.active .cs-title {
  transform: translateY(0);
}

.cs-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  margin-bottom: 35px;
  transform: translateY(20px);
  transition: transform 0.6s ease 0.1s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.cs-info-item.active .cs-sub {
  transform: translateY(0);
}

.cs-btn {
  transform: translateY(20px);
}

.cs-info-item.active .cs-btn {
  transform: translateY(0);
}

.cs-nav {
  position: relative;
  z-index: 3;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  /* backdrop-filter: blur(5px); */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-nav-list {
  display: flex;
  /* justify-content: space-between; */
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.cs-nav-item {
  flex: 1;
  text-align: center;
  padding: 24px 15px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
}

.cs-nav-item:last-child {
  border-right: none;
}

.cs-nav-item:hover,
.cs-nav-item.active {
  background: rgba(0, 0, 0, 0.3);
}

.cs-nav-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.cs-nav-item.active::before {
  transform: scaleX(1);
}

.cs-nav-icon {
  margin-bottom: 15px;
  opacity: 0.6;
  transition: opacity 0.3s;
  color: #fff;
}


.cs-nav-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cs-nav-item.active .cs-nav-icon,
.cs-nav-item:hover .cs-nav-icon {
  opacity: 1;
}

.cs-nav-text {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
  transition: opacity 0.3s;
  color: #fff;
}

.cs-nav-item.active .cs-nav-text,
.cs-nav-item:hover .cs-nav-text {
  opacity: 1;
}

@media(max-width: 991px) {
  .cs-nav-list {
    flex-wrap: wrap;
  }

  .cs-nav-item {
    flex: 0 0 33.33%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media(max-width: 767px) {
  .cs-nav-item {
    flex: 0 0 50%;
    padding: 15px;
  }

  .cs-nav-icon {
    margin-bottom: 10px;
  }
}

.video-2 video {
  width: 100%;
  aspect-ratio: 640 / 360;
}

.video-2 {
  display: flex;
}