/* 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 {



  /* Premium height */
}

@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 {

  /* Subtle zoom in when active */
}

/* Overlay text */
.slide-item .slide-content {}



/* 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: "";
  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;
}





























.brand-section {
  background: #111;
  padding: 70px 0 80px;
}

.brand-section .brand-section .container-brand {
  padding: 0 20px;
}

.brand-section .brand-heading {
  text-align: center;
  margin-bottom: 52px;
}

.brand-section .brand-heading .brand-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.brand-section .brand-heading .brand-title {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.3;
  margin: 0;
}

.brand-section .brand-heading .brand-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #666666;
  margin: 14px auto 0;
}

.brand-section .brand-slider-wrap {
  position: relative;
}

.brand-section .brand-slider .slick-slide {
  padding: 0 12px;
  box-sizing: border-box;
}

.brand-section .brand-slider .slick-list {
  margin: 0 -12px;
}

.brand-section .brand-card {
  /* background: #111; */
  display: flex !important;
  flex-direction: column;
  outline: none;
}

.brand-section .brand-card__img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.brand-section .brand-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.brand-section .brand-card:hover .brand-card__img img {
  transform: scale(1.05);
}

.brand-section .brand-card__body {
  padding: 28px 0 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.brand-section .brand-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 6px;
}

.brand-section .brand-card__subtitle {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: #f1f1f1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.brand-section .brand-card__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #f1f1f1;
  margin: 0 0 28px;
  text-align: center;
  flex: 1;
}

.brand-section .brand-card__btn a {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.brand-section .brand-card__btn:hover a {
  background: #fff;
  color: #111;
  text-decoration: none;
}

.brand-section .brand-section .brand-divider {
  margin-top: 60px;
  border: none;
  border-top: 1px solid #2a2a2a;
}

.brand-section .brand-slider .slick-dots {
  position: static;
  margin-top: 36px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  width: 100%;
  bottom: auto;
  transform: none;
}

.brand-section .brand-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.brand-section .brand-slider .slick-dots li button {
  width: 36px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  display: block;
}

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

.brand-section .brand-slider .slick-dots li.slick-active button {
  background: #fff;
  width: 64px;
}

.brand-section .brand-slider-wrap .slick-prev,
.brand-section .brand-slider-wrap .slick-next {
  position: absolute;
  top: 140px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s;
}

.brand-section .brand-slider-wrap .slick-prev:hover,
.brand-section .brand-slider-wrap .slick-next:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.brand-section .brand-slider-wrap .slick-prev {
  left: -56px;
  transform: translateY(-50%);
}

.brand-section .brand-slider-wrap .slick-next {
  right: -56px;
  transform: translateY(-50%);
}

.brand-section .brand-slider-wrap .slick-prev::before,
.brand-section .brand-slider-wrap .slick-next::before {
  color: #fff;
  font-size: 18px;
  opacity: 1;
}

@media (max-width: 1300px) {
  .brand-section .brand-slider-wrap .slick-prev {
    left: -20px;
  }

  .brand-section .brand-slider-wrap .slick-next {
    right: -20px;
  }
}

@media (max-width: 1024px) {
  .brand-section .brand-section {
    padding: 50px 0 60px;
  }

  .brand-section .brand-card__img {
    height: 240px;
  }

  .brand-section .brand-slider-wrap .slick-prev,
  .brand-section .brand-slider-wrap .slick-next {
    display: none !important;
  }
}

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

  .brand-section .brand-heading {
    margin-bottom: 36px;
  }

  .brand-section .brand-heading .brand-title {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .brand-section .brand-heading .brand-eyebrow {
    font-size: 12px;
  }

  .brand-section .brand-card__img {
    height: 200px;
  }

  .brand-section .brand-card__body {
    padding: 20px 0 28px;
  }

  .brand-section .brand-card__name {
    font-size: 20px;
  }

  .brand-section .brand-card__desc {
    font-size: 13px;
  }

  .brand-section .brand-slider .slick-slide {
    padding: 0 8px;
  }

  .brand-section .brand-slider .slick-list {
    margin: 0 -8px;
  }
}

@media (max-width: 480px) {
  .brand-section .brand-card__img {
    height: 180px;
  }

  .brand-section .brand-heading .brand-title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .brand-section .brand-card__btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}



















.showcase-section {
  /* Allow cards to overflow container */
  /* If the slide is NOT active, fade out only its image */
}

.showcase-section .showcase-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.showcase-section .showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin-right: 120px;
  white-space: nowrap;
  background-color: transparent;
  height: fit-content;
}

.showcase-section .showcase-label .dot {
  width: 6px;
  height: 6px;
  background-color: #cba25a;
  border-radius: 50%;
}

.showcase-section .showcase-title-wrap {
  max-width: 700px;
  text-align: left;
}

.showcase-section .showcase-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.showcase-section .showcase-title span {
  color: #cba25a;
}

.showcase-section .showcase-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.showcase-section .showcase-slider-wrap {
  margin: 0 -15px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.showcase-section .showcase-card-wrap {
  padding: 15px;
}

.showcase-section .showcase-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.showcase-section .showcase-card.card-tall {
  transform: translateY(0);
}

.showcase-section .showcase-card.card-short {
  transform: translateY(60px);
}

.showcase-section .showcase-card-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 5px;
  aspect-ratio: 0.8;
}

.showcase-section .showcase-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.showcase-section .showcase-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-section .showcase-card:hover .showcase-card-img-wrap img {
  transform: scale(1.08);
}

.showcase-section .showcase-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 2;
}

.showcase-section .showcase-card-info {
  padding: 0 5px;
}

.showcase-section .showcase-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-align: center;
}

.showcase-section .showcase-card-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 19px;
  text-align: center;
}

.showcase-section .showcase-card-title a:hover {
  color: #cba25a;
}

.showcase-section .showcase-card-meta {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.showcase-section .showcase-card-meta .showcase-loc {
  color: #666;
}

.showcase-section .showcase-card-meta .showcase-year {
  color: #999;
}

.showcase-section .showcase-slider .slick-list {
  overflow: visible;
}

.showcase-section .slick-slide:not(.slick-active) .showcase-card-img-wrap::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .showcase-header {
    flex-direction: column;
  }

  .showcase-title-wrap {
    margin-left: 0;
  }

  .showcase-label {
    margin-right: 0;
    margin-bottom: 20px;
  }

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

@media (max-width: 992px) {
  .showcase-section {
    padding: 80px 0 100px;
  }

  .showcase-title {
    font-size: 36px;
  }

  .showcase-card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .showcase-section {
    padding: 60px 0 90px;
  }

  .showcase-title {
    font-size: 32px;
  }

  .showcase-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .showcase-section {
    padding: 50px 0 80px;
  }

  .showcase-title {
    font-size: 28px;
  }

  .showcase-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }
}






















































.newprod-section {
  background: #fff;
  padding: 64px 0 72px;
}

.newprod-section .newprod-heading {
  text-align: center;
  margin-bottom: 36px;
}

.newprod-section .newprod-heading .newprod-title {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

.newprod-section .newprod-heading .newprod-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #ccc;
  margin: 8px auto 16px;
}

.newprod-section .newprod-heading .newprod-viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s;
}

.newprod-section .newprod-heading .newprod-viewall:hover {
  opacity: 0.55;
  text-decoration: none;
}

.newprod-section .newprod-heading .newprod-viewall::before,
.newprod-section .newprod-heading .newprod-viewall::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #1a1a1a;
  flex-shrink: 0;
}

.newprod-section .newprod-slider-wrap {
  position: relative;
}

.newprod-section .newprod-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

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

.newprod-section .newprod-card {
  display: flex !important;
  flex-direction: column;
  outline: none;
  cursor: pointer;
  align-items: center;
}

.newprod-section .newprod-card__img {
  width: 100%;
  padding-bottom: 100%;
  /* square ratio */
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 14px;
  background: #f5f5f5;
}

.newprod-section .newprod-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 10px;
}

.newprod-section .newprod-card:hover .newprod-card__img img {
  transform: scale(1.06);
}

.newprod-section .newprod-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #c8a96e;
  margin: 0 0 6px;
  line-height: 1.4;
}

.newprod-section .newprod-card__price {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.newprod-section .newprod-slider-wrap .slick-prev,
.newprod-section .newprod-slider-wrap .slick-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff !important;
  border: 1px solid #ddd;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

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

.newprod-section .newprod-slider-wrap .slick-prev:hover,
.newprod-section .newprod-slider-wrap .slick-next:hover {
  background: #f5f5f5 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newprod-section .newprod-slider-wrap .slick-prev {
  left: -22px;
}

.newprod-section .newprod-slider-wrap .slick-next {
  right: -22px;
}

.newprod-section .newprod-slider-wrap .slick-prev::before,
.newprod-section .newprod-slider-wrap .slick-next::before {
  display: none !important;
}

.newprod-section .newprod-slider-wrap .slick-prev,
.newprod-section .newprod-slider-wrap .slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}

.newprod-section .newprod-slider-wrap .slick-prev svg,
.newprod-section .newprod-slider-wrap .slick-next svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .newprod-section .newprod-section {
    padding: 50px 0 60px;
  }

  .newprod-section .newprod-slider-wrap .slick-prev {
    left: -8px;
  }

  .newprod-section .newprod-slider-wrap .slick-next {
    right: -8px;
  }
}

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

  .newprod-section .newprod-heading .newprod-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .newprod-section .newprod-slider-wrap .slick-prev,
  .newprod-section .newprod-slider-wrap .slick-next {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .newprod-section .newprod-heading .newprod-title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .newprod-section .newprod-heading .newprod-viewall::before,
  .newprod-section .newprod-heading .newprod-viewall::after {
    width: 24px;
  }

  .newprod-section .newprod-card__name {
    font-size: 16px;
  }

  .newprod-section .newprod-card__price {
    font-size: 14px;
  }
}



























.appuse-section {
  background: #111;
  width: 100%;
  overflow: hidden;
}

.appuse-section .appuse-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  width: 100%;
}

.appuse-section .appuse-card-main {
  grid-column: 1;
  grid-row: 0.3333333333;
  height: 100vh;
}

.appuse-section .appuse-right {
  grid-column: 2;
  grid-row: 0.3333333333;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
}

.appuse-section .appuse-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.appuse-section .appuse-card-main {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.appuse-section .appuse-right .appuse-card {
  height: 50vh;
}

.appuse-section .appuse-card img,
.appuse-section .appuse-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.appuse-section .appuse-card:hover img,
.appuse-section .appuse-card-main:hover img {
  transform: scale(1.06);
}

.appuse-section .appuse-card::after,
.appuse-section .appuse-card-main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.05) 50%);
  transition: background 0.4s;
  pointer-events: none;
}

.appuse-section .appuse-card:hover::after,
.appuse-section .appuse-card-main:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.15) 60%);
}

.appuse-section .appuse-card__info,
.appuse-section .appuse-card-main .appuse-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px 15px;
  z-index: 3;
  background: #00000057;
}

.appuse-section .appuse-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px;
  line-height: 1.3;
}

.appuse-section .appuse-card-main .appuse-card__title {
  font-size: 18px;
  margin: 0px 0 8px;
}

.appuse-section .appuse-card__link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
  margin-right: 12px;
}

.appuse-section .appuse-card__link:hover {
  color: #fff;
  text-decoration: none;
}

.appuse-section .appuse-card__brand {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #c8a96e;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.appuse-section .appuse-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.appuse-section .appuse-right .appuse-card {
  border: 1px solid #111;
}

@media (max-width: 1024px) {
  .appuse-section .appuse-card-main {
    height: 100vh;
  }

  .appuse-section .appuse-right {
    height: 100vh;
  }

  .appuse-section .appuse-right .appuse-card {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .appuse-section .appuse-grid {
    grid-template-columns: 1fr;
  }

  .appuse-section .appuse-card-main {
    grid-column: 1;
    grid-row: auto;
    height: 60vw;
  }

  .appuse-section .appuse-right {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .appuse-section .appuse-right .appuse-card {
    height: 45vw;
  }

  .appuse-section .appuse-card__title {
    font-size: 13px;
  }

  .appuse-section .appuse-card-main .appuse-card__title {
    font-size: 16px;
  }

  .appuse-section .appuse-card__info,
  .appuse-section .appuse-card-main .appuse-card__info {
    padding: 14px 14px 12px;
  }
}

@media (max-width: 480px) {
  .appuse-section .appuse-right {
    grid-template-columns: 1fr;
  }

  .appuse-section .appuse-right .appuse-card {
    height: 55vw;
  }

  .appuse-section .appuse-card-main {
    height: 70vw;
  }

  .appuse-section .appuse-card__title {
    font-size: 16px;
  }
}





















.showroom-section {
  background: #111;
  padding: 64px 0 72px;
}

.showroom-section .showroom-heading {
  text-align: center;
  margin-bottom: 28px;
}

.showroom-section .showroom-heading .showroom-title {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

.showroom-section .showroom-heading .showroom-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #555;
  margin: 6px auto 16px;
}

.showroom-section .showroom-heading .showroom-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s;
}

.showroom-section .showroom-heading .showroom-explore:hover {
  opacity: 0.6;
  text-decoration: none;
}

.showroom-section .showroom-heading .showroom-explore::before,
.showroom-section .showroom-heading .showroom-explore::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

.showroom-section .showroom-video-wrap {
  /* max-width: 800px; */
  margin: 0 auto 36px;
  padding: 0 20px;
  position: relative;
}

.showroom-section .showroom-video {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.showroom-section .showroom-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.showroom-section .showroom-video:hover img {
  transform: scale(1.03);
}

.showroom-section .showroom-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  transition: background 0.4s;
}

.showroom-section .showroom-video:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

.showroom-section .showroom-video__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px;
}

.showroom-section .showroom-video__name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 24px;
  text-align: center;
}

.showroom-section .showroom-play {
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.showroom-section .showroom-video:hover .showroom-play {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.showroom-section .showroom-play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.showroom-section .showroom-video__explore {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}

.showroom-section .showroom-video__powered {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.showroom-section .showroom-video__powered span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showroom-section .showroom-video__powered .matterport-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.showroom-section .showroom-video__powered .matterport-logo svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.showroom-section .showroom-cta {
  text-align: center;
}

.showroom-section .showroom-cta__btn {
  display: inline-block;
  padding: 16px 48px;
  background: #2a2a2a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s, border-color 0.3s;
  letter-spacing: 3px;
}

.showroom-section .showroom-cta__btn:hover {
  background: #3a3a3a;
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 1024px) {
  .showroom-section .showroom-section {
    padding: 50px 0 60px;
  }

  .showroom-section .showroom-video {
    height: 360px;
  }
}

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

  .showroom-section .showroom-video {
    height: 280px;
  }

  .showroom-section .showroom-heading .showroom-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .showroom-section .showroom-video__name {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .showroom-section .showroom-play {
    width: 52px;
    height: 52px;
  }

  .showroom-section .showroom-play svg {
    width: 20px;
    height: 20px;
  }

  .showroom-section .showroom-cta__btn {
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .showroom-section .showroom-video {
    height: 200px;
  }

  .showroom-section .showroom-heading .showroom-title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .showroom-section .showroom-heading .showroom-explore::before,
  .showroom-section .showroom-heading .showroom-explore::after {
    width: 24px;
  }

  .showroom-section .showroom-video__name {
    font-size: 14px;
  }

  .showroom-section .showroom-video__powered {
    bottom: 10px;
  }
}















.whychoose-section {
  background: #000;
  padding: 60px 0;
  overflow: hidden;
}

.whychoose-section .whychoose-heading {
  text-align: center;
  margin-bottom: 40px;
}

.whychoose-section .whychoose-title {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

.whychoose-section .whychoose-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: #c8a96e;
  margin: 15px auto 0;
}

.whychoose-section .whychoose-slider-wrap {
  padding: 0 15px;
}

.whychoose-section .whychoose-card {
  margin: 0 10px;
  background: #fff;
  display: block;
  text-decoration: none;
  overflow: hidden;
  outline: none;
}

.whychoose-section .whychoose-card__img {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.whychoose-section .whychoose-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.whychoose-section .whychoose-card:hover .whychoose-card__img img {
  transform: scale(1.05);
}

.whychoose-section .whychoose-card__content {
  padding: 10px 15px;
  text-align: center;
  background: #fff;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whychoose-section .whychoose-card__text {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s;
}

.whychoose-section .whychoose-card:hover .whychoose-card__text {
  color: #c8a96e;
}

.whychoose-section .whychoose-slider .slick-track {
  display: flex;
}

.whychoose-section .whychoose-slider .slick-slide {
  height: auto;
}

.news-heading {
  text-align: center;
  padding: 60px 0 40px;
  background: #000000;
}

.news-main-title {
  display: block;
}

.news-main-title::after {}

@media (max-width: 768px) {
  .news-heading {
    padding: 40px 0 30px;
  }

  .news-main-title {
    font-size: 20px;
  }
}




.slider-section {
  position: relative;
  width: 100%;

  /* Premium height */
  overflow: hidden;
}


.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 {}

/* Overlay text */
.slide-item .slide-content {

  text-align: left;
  color: white;

  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 635px;
}

.slide-item .slide-item-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

.slide-content-sub {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0;
  filter: blur(10px);
}

.slide-content-sub::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}

.slide-content h2 {
  font-size: clamp(32px, 2vw, 60px);
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: none;
  line-height: 1.3;
  opacity: 0;
  filter: blur(10px);
  color: #FFF;
  text-transform: uppercase;
}

.slide-content h2 strong,
.slide-content h2 span {
  color: #252a57;
  font-weight: 900;
}

.slide-content p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  line-height: 1.5;
  opacity: 0;
  filter: blur(10px);
  /* text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8); */
}

.slide-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  filter: blur(10px);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.slide-btn-primary {
  background-color: #252a57;
  color: #fff;
  border: 1px solid #252a57;
}

.slide-btn-primary:hover {
  background-color: var(--color-primary);
  border-color: #FFF;
  transform: translateY(-3px);
  color: #fff;
}

.slide-btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

.slide-tags {
  opacity: 0;
  filter: blur(10px);
}

.slide-tags ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.slide-tags ul li {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-tags ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300a859' viewBox='0 0 16 16'%3E%3Cpath d='M11.28 5.47a.75.75 0 010 1.06l-4 4a.75.75 0 01-1.06 0l-2-2a.75.75 0 011.06-1.06l1.47 1.47 3.47-3.47a.75.75 0 011.06 0z'/%3E%3Cpath fill-rule='evenodd' d='M7.26.213a2.25 2.25 0 011.48 0l4.75 1.653A2.25 2.25 0 0115 3.991v4.01c0 2.048-1.181 3.747-2.45 4.991-1.282 1.255-2.757 2.15-3.573 2.598a2.024 2.024 0 01-1.954 0c-.816-.447-2.291-1.342-3.572-2.598C2.18 11.748 1 10.05 1 8V3.991c0-.957.606-1.81 1.51-2.125L7.26.213zm.986 1.417a.75.75 0 00-.493 0l-4.75 1.653a.75.75 0 00-.503.708v4.01c0 1.455.847 2.79 2 3.92 1.142 1.118 2.483 1.937 3.244 2.353.163.09.35.09.512 0 .761-.416 2.102-1.235 3.244-2.353 1.153-1.13 2-2.465 2-3.92V3.99a.75.75 0 00-.504-.708L8.246 1.63z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

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

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

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

.slick-active .slide-actions {
  animation: softEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

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

.btn-view-all {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  filter: blur(10px);
}

.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);
  }
}

.slide-item::after {}

@media (max-width: 768px) {
  .slide-item::after {
    background: linear-gradient(to right, rgba(17, 45, 77, 0.7) 0%, rgba(17, 45, 77, 0.7) 50%, rgba(17, 45, 77, 0.7) 100%);
  }
}

.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: 40px;
  height: 40px;
}

.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: 15px;
}

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

@media (max-width: 768px) {
  .slide-item .slide-content {
    /* left: 5%; */
    width: 100%;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .slide-actions {
    gap: 12px;
    width: 100%;
  }

  .slide-btn {
    padding: 10px 15px;
  }

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

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

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

  .slider-section {
    /* height: 60vh; */
  }
}

.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;
  }

  .slide-content h2 strong,
  .slide-content h2 span {
    display: block;
  }
}

@media (max-width: 380px) {
  .slide-content h2 {
    font-size: 25px;
  }

  .slide-actions {
    flex-wrap: wrap;
  }
}








@media(max-width:768px) {
  .brand-section .brand-card__subtitle {
    font-size: 12px;
  }



  p.brand-card__desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-section .brand-card__desc {
    margin-bottom: 10px;
  }

  .brand-section .brand-card__btn a {
    padding: 9px 36px;
    font-size: 13px;
  }

  .brand-section .brand-card__body {
    padding-bottom: 10px;
  }

  .brand-section {
    padding: 20px 0px;
  }

  .showcase-section {
    padding: 20px 0px;
  }

  .showcase-section .showcase-heading .showcase-title {
    padding-bottom: 5px;
  }

  .collection-section .collection-heading .collection-title {
    padding-bottom: 5px;
  }

  .collection-section {
    padding: 20px 0px !important;
  }



  .newprod-section {
    padding: 20px 0px;
  }

  .showroom-section {
    padding: 20px 0px;
  }

  .whychoose-section .whychoose-title {
    font-size: 20px;
  }

  .whychoose-section {
    padding: 20px 0px;
  }
}


































.new-brand-section .new-brand-watermark {
  position: absolute;
  bottom: 18px;
  left: 32%;
  font-size: 280px;
  font-weight: 800;
  color: rgb(255 255 255 / 12%);
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  text-transform: lowercase;
  opacity: .06;
}

.new-brand-section .new-brand-slider {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.new-brand-section .new-brand-item-wrap {
  outline: none;
}

.new-brand-section .new-brand-item {
  display: flex !important;
  align-items: center;
  gap: 60px;
}

.new-brand-section .new-brand-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px 0;
}

.new-brand-section .new-brand-right {
  flex: 1.2;
  display: flex;
  align-items: center;
}

.new-brand-section .new-brand-right img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.new-brand-section .new-brand-badge {
  display: inline-flex;
  align-items: center;
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.new-brand-section .new-brand-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #cf9b57;
  border-radius: 50%;
  margin-right: 8px;
}

.new-brand-section .new-brand-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
  margin-top: 0;
}

.new-brand-section .new-brand-title span,
.new-brand-section .new-brand-title b,
.new-brand-section .new-brand-title strong {
  color: #cf9b57;
  font-weight: 700;
}

.new-brand-section .new-brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.new-brand-section .new-brand-feature-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.new-brand-section .new-brand-feature-item svg {
  color: #cf9b57;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.new-brand-section .new-brand-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 98%;
}

.new-brand-section .new-brand-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 8px 8px 8px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.new-brand-section .new-brand-btn:hover {
  background-color: #222;
  border-color: #cf9b57;
  color: #cf9b57;
}

.new-brand-section .new-brand-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: #cf9b57;
  color: #fff;
  border-radius: 50%;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.new-brand-section .new-brand-btn:hover .new-brand-btn-icon {
  transform: rotate(45deg);
}

.new-brand-section .new-brand-btn-icon svg {
  width: 14px;
  height: 14px;
}

.new-brand-section .new-brand-slider .slick-dots {
  bottom: -40px;
  text-align: center;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.new-brand-section .new-brand-slider .slick-dots li {
  margin: 0 4px;
}

.new-brand-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000057;
  pointer-events: none;
}

.new-brand-section .new-brand-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #555;
  border-radius: 50%;
}

.new-brand-section .new-brand-watermark img {
  height: 172px;
}

.new-brand-section .new-brand-slider .slick-dots li.slick-active button {
  background: #cf9b57;
}

@media (max-width: 991px) {
  .new-brand-section .new-brand-item {
    flex-direction: column;
    gap: 40px;
  }

  .new-brand-section .new-brand-right {
    width: 100%;
  }

  .new-brand-section .new-brand-title {
    font-size: 36px;
  }

  .new-brand-section .new-brand-watermark {
    font-size: 180px;
    bottom: 0;
    left: 5%;
  }
}

@media (max-width: 767px) {
  .new-brand-section .new-brand-features {
    grid-template-columns: 1fr;
  }

  .new-brand-section .new-brand-title {
    font-size: 30px;
  }

  .new-brand-section .new-brand-desc {
    max-width: 100%;
  }

  .new-brand-section .new-brand-watermark {
    font-size: 120px;
  }
}


























.experience-section {
  /* Slick Customizations */
  /* Responsive */
}

.experience-section .experience-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.experience-section .experience-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #252a57;
  padding: 8px 16px;
  border: 1px solid #252a5745;
  border-radius: 30px;
  margin-right: 50px;
  /* white-space: nowrap; */
  background-color: transparent;
  width: 25%;
}

.experience-section .experience-label .dot {
  width: 6px;
  height: 6px;
  background-color: #cba25a;
  border-radius: 50%;
}

.experience-section .experience-title-wrap {
  max-width: 800px;
  width: 75%;
}

.experience-section .experience-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.experience-section .experience-title span {
  color: #cba25a;
}

.experience-section .experience-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.experience-section .experience-slider-wrap {
  margin: 0 -15px;
  position: relative;
  z-index: 2;
}

.experience-section .experience-card-wrap {
  padding: 15px;
}

.experience-section .experience-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-section .experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.experience-section .experience-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.experience-section .experience-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.experience-section .experience-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-section .experience-card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
}

.experience-section .experience-card-desc {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 0;
}

.experience-section .experience-slider .slick-track {
  display: flex !important;
}

.experience-section .experience-slider .slick-slide {
  height: auto;
}

.experience-section .experience-slider .slick-dots {
  bottom: -50px;
  list-style: none;
  display: flex !important;
  justify-content: center;
  padding: 0;
  gap: 8px;
  position: absolute;
  width: 100%;
}

.experience-section .experience-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.experience-section .experience-slider .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcdcdc;
  border: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.experience-section .experience-slider .slick-dots li.slick-active button {
  background-color: #cba25a;
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .experience-section .experience-header {
    flex-direction: column;
  }

  .experience-section .experience-label {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .experience-section .experience-title {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .experience-section .experience-section {
    padding: 80px 0 100px;
  }

  .experience-section .experience-title {
    font-size: 36px;
  }

  .experience-section .experience-card {
    padding: 30px 24px;
    min-height: 320px;
  }

  .experience-section .experience-card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .experience-section .experience-section {
    padding: 60px 0 90px;
  }

  .experience-section .experience-title {
    font-size: 32px;
  }

  .experience-section .experience-subtitle {
    font-size: 15px;
  }

  .experience-section .experience-card {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .experience-section .experience-section {
    padding: 50px 0 80px;
  }

  .experience-section .experience-title {
    font-size: 28px;
  }

  .experience-section .experience-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }
}




























/* ============================================================
   SHOWROOM SECTION
   ============================================================ */
.showroom-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showroom-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.showroom-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.showroom-play-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showroom-play-btn {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.showroom-play-btn:hover {
  transform: scale(1.05);
}

.showroom-play-btn .play-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 10;
  margin-left: 6px;
}

.showroom-play-btn .play-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

/* Radiating ripple effect */
.showroom-play-btn .play-ripple,
.showroom-play-btn .play-ripple-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: showroomRipple 2s linear infinite;
  pointer-events: none;
}

.showroom-play-btn .play-ripple-2 {
  animation-delay: 1s;
}

@keyframes showroomRipple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  100% {
    width: 220%;
    height: 220%;
    opacity: 0;
  }
}

.showroom-text-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
}

.showroom-main-text {
  font-size: 63px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -2px;
  flex: 0 0 auto;
  max-width: 60%;
  margin: 0;
}

.showroom-sub-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  flex: 0 0 auto;
  max-width: 35%;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
  .showroom-main-text {
    font-size: 64px;
  }
}

@media (max-width: 992px) {
  .showroom-section {
    height: 70vh;
    min-height: 500px;
  }

  .showroom-text-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .showroom-main-text {
    font-size: 48px;
  }

  .showroom-sub-text {
    font-size: 15px;
  }

  .showroom-play-btn {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .showroom-section {
    height: 60vh;
    min-height: 400px;
  }

  .showroom-play-btn {
    width: 80px;
    height: 80px;
  }

  .showroom-main-text {
    font-size: 36px;
  }

  .showroom-sub-text {
    font-size: 14px;
  }
}




































.news-header-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.news-label-wrap {
  flex: 0 0 300px;
}

.news-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  white-space: nowrap;
  text-transform: uppercase;
}

.news-label .dot {
  width: 6px;
  height: 6px;
  background-color: #cba25a;
  border-radius: 50%;
}

.news-main-title {
  font-size: 30px;
  font-weight: 800;
  color: #252a57;
  line-height: 1.1;
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.news-main-title span {
  color: #cba25a;
}

.news-grid-3 {}

.news-card-v2 {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.3s ease;
  margin: 0px 10px;
}

.news-card-v2:hover {
  transform: translateY(-5px);
}

.news-card-v2__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}

.news-card-v2__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card-v2:hover .news-card-v2__img-wrap img {
  transform: scale(1.05);
}

.news-card-v2__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #cba25a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
}

.news-card-v2__content {
  padding: 0 5px;
}

.news-card-v2__meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
}

.news-card-v2__meta span {
  color: #cba25a;
  font-weight: 700;
}

.news-card-v2__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 9px;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
  min-height: 46px;
}

.news-card-v2:hover .news-card-v2__title {
  color: #cba25a;
}

.news-card-v2__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .news-label-wrap {
    flex: 0 0 auto;
  }

  .news-main-title {
    font-size: 40px;
    padding-left: 0;
    border-left: none;
  }

  .news-grid-3 {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-main-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .news-grid-3 {
    grid-template-columns: 1fr;
  }

  .news-main-title {
    font-size: 28px;
  }
}















































.collection-header-row {
  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: flex-end; */
  margin-bottom: 50px;
  /* gap: 40px; */
}

.collection-header-left {
  /* flex: 0 0 60%; */
}

.collection-header-left .news-label {
  margin-bottom: 24px;
}

.collection-main-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

.collection-main-title span {
  color: #cba25a;
}

.collection-header-right {
  flex: 0 0 35%;
}

.collection-header-desc {
  font-size: 16px;
  color: #272525;
  line-height: 1.6;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

/* Staggered Grid to Slick Slider */
.collection-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px 26px;
}

.collection-steps-grid .slick-list {
  padding-bottom: 200px;
}

.collection-steps-grid .slick-track {
  display: flex !important;
}

.collection-steps-grid .slick-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}

.collection-steps-grid .slick-slide>div {
  flex: 1;
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Staggering the cards vertically */
.step-1 {
  top: 0;
}

.step-2 {
  top: 50px;
}

.step-3 {
  top: 100px;
}

.step-4 {
  top: 150px;
}

.step-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.step-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.step-card:hover .step-card__img img {
  transform: scale(1.05);
}

.step-card__content {
  padding: 24px;
  position: relative;
  background: #ffffff;
  z-index: 2;
  flex: 1;
}

.step-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.5px;
}

.step-card__title span {
  color: #cba25a;
}

.step-card__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.step-card__watermark {
  position: absolute;
  bottom: 5px;
  right: 15px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .collection-main-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .collection-section {
    padding-bottom: 50px !important;
  }

  .collection-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
  }

  .collection-header-left,
  .collection-header-right {
    flex: 1 1 auto;
  }

  .collection-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Reset margins for 2 column */
  .step-1,
  .step-3 {
    top: 0;
  }

  .step-2,
  .step-4 {
    top: 40px;
  }
}

@media (max-width: 576px) {
  .collection-section {
    padding-bottom: 80px;
  }

  .collection-steps-grid {
    grid-template-columns: 1fr;
  }

  /* Reset margins for 1 column */
  .step-1,
  .step-2,
  .step-3,
  .step-4 {
    top: 0;
  }

  .collection-main-title {
    font-size: 36px;
  }
}











.experience-card-icon img {
  -webkit-filter: brightness(0) saturate(100%) invert(71%) sepia(24%) saturate(540%) hue-rotate(357deg) brightness(92%) contrast(87%);
  filter: brightness(0) saturate(100%) invert(71%) sepia(24%) saturate(540%) hue-rotate(357deg) brightness(92%) contrast(87%);
  width: 40px;
  height: 40px;
}

.experience-section .experience-title-wrap h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #252a57;
}

.experience-section .experience-title-wrap p {
  font-size: 16px;
  line-height: 1.7;
}

.experience-section .experience-title-wrap strong {
  color: #f0940f;
}

.new-brand-section .new-brand-desc h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.new-brand-section .new-brand-desc h2 strong {
  color: #f0940f;
}

.new-brand-section .new-brand-desc h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.new-brand-section .new-brand-desc ul li {
  list-style: disc;
  margin-left: 20px;
  padding-bottom: 7px;
}

.new-brand-section .new-brand-desc p {
  line-height: 1.8;
  margin-top: 15px;
}

.new-brand-section .new-brand-desc ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.showcase-section .showcase-title-wrap h2 {
  font-size: 31px;
  padding-bottom: 15px;
  color: #252a57;
  text-transform: uppercase;
}

.showcase-section .showcase-title-wrap h2 strong {
  color: #f09410;
}

.showcase-section .showcase-title-wrap p {
  font-size: 16px;
  line-height: 1.7;
}

.collection-header-desc h2 {
  font-size: 30px;
  padding-bottom: 15px;
  color: #252a57;
  text-transform: uppercase;
      min-width: 702px;
}

.collection-header-desc h2 strong {
  color: #f09410;
  display: block;
}

.news-main-title h2 strong {
  color: #f09410;
}

.step-card__desc h3 {
  font-size: 18px;
  color: #000;
  padding-bottom: 10px;
}

.step-card__desc h3 strong {
  color: #f0940f;
}

.custom-footer .brand-col h3 {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.custom-footer .brand-col p {
  font-size: 16px;
}

section.newprod-section .showcase-section {
  background: unset;
  padding: unset;
}


@media(max-width:990px){
  .showcase-section .showcase-card.card-short {
    transform: unset;
}
}




@media(max-width:550px) {
  
.collection-header-desc h2 {
      min-width: unset;
}

  .experience-section {
    padding: 20px 0px !important;
  }

  .experience-section .experience-header {
    margin-bottom: 0px;
  }

  .experience-section .experience-title-wrap h2 {
    font-size: 25px;
  }

  .experience-section .experience-title-wrap p {
    font-size: 15px;
  }

  .experience-section .experience-card {
    min-height: 225px;
  }

  .new-brand-section .new-brand-desc h2 {
    font-size: 30px;
  }

  .new-brand-section .new-brand-desc ul {
    grid-template-columns: 1fr;
  }

  .new-brand-section .new-brand-desc {
    font-size: 15px;
  }

  .new-brand-section {
    padding-bottom: 30px !important;
    padding-top: 30px !important;
  }

  .showcase-section .showcase-title-wrap h2 {
    font-size: 25px;
  }

  .showcase-section .showcase-title-wrap p {
    font-size: 15px;
  }

  .showcase-section .showcase-header {
    margin-bottom: 20px;
  }

  .showcase-section .showcase-title-wrap {
    max-width: 100%;
  }

  .showcase-section .showcase-slider-wrap {
    padding-bottom: 0px;
  }

  .collection-header-desc {
    display: block;
  }

  .collection-header-desc h2 {
    font-size: 25px;
  }


  .collection-header-desc p {
    font-size: 15px;
  }

  .collection-section {
    padding-bottom: 20px !important;
  }

  .news-main-title {
    font-size: 25px;
  }

  .news-header-wrap {
    margin-bottom: 20px;
  }

}