@charset "UTF-8";
.collection-page {
  padding-bottom: 50px; }

/* Hero Banner Section */
.hero-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  border-radius: 16px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden; }

.hero-banner .hero-image-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
  width: 100%; }

.hero-banner .hero-image-container img {
  width: 100%; }

.hero-banner .hero-image-container .hero-background-image {
  width: 100%;
  height: auto;
  position: relative;
  display: block; }

.hero-banner .hero-content-overlay {
  display: flex;
  padding: 120px 48px 48px 48px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent); }

@media (max-width: 991px) {
  .hero-banner .hero-content-overlay {
    padding: 80px 32px 32px 32px; } }

@media (max-width: 640px) {
  .hero-banner .hero-content-overlay {
    padding: 60px 24px 24px 24px; } }

.hero-banner .hero-content-overlay .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  position: relative; }

.hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative; }

.hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative; }

.hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-item .breadcrumb-link {
  color: #000102;
  text-align: center;
  letter-spacing: -0.2px;
  position: relative;
  font: 400 14px/21px "Fz Poppins", sans-serif; }

@media (max-width: 991px) {
  .hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-item .breadcrumb-link {
    font-size: 13px;
    line-height: 19px; } }

@media (max-width: 640px) {
  .hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-item .breadcrumb-link {
    font-size: 12px;
    line-height: 18px; } }

.hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-separator {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  position: relative; }

@media (max-width: 640px) {
  .hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-separator {
    width: 16px;
    height: 16px; } }

.hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-separator .chevron-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0; }

@media (max-width: 640px) {
  .hero-banner .hero-content-overlay .hero-content .breadcrumb-navigation .breadcrumb-separator .chevron-icon {
    width: 16px;
    height: 16px; } }

.hero-banner .hero-content-overlay .hero-content .hero-title {
  width: 436px;
  color: #000102;
  letter-spacing: -1.7px;
  position: relative;
  font: 500 40px/52px "Fz Poppins", sans-serif;
  margin: 0; }

@media (max-width: 991px) {
  .hero-banner .hero-content-overlay .hero-content .hero-title {
    font-size: 32px;
    line-height: 42px;
    width: 100%; } }

@media (max-width: 640px) {
  .hero-banner .hero-content-overlay .hero-content .hero-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1px;
    width: 100%; } }

/* Category Navigation Section */
.category-navigation {
  padding-top: 64px; }

.category-navigation .categories-container {
  border-radius: 16px;
  position: relative; }

/* Owl Carousel Custom Styling */
.category-navigation .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 999; }

.category-navigation .owl-nav button {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #D0A930 !important;
  border: 2px solid #D0A930 !important;
  color: white !important;
  font-size: 18px;
  cursor: pointer;
  pointer-events: all;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4); }

.category-navigation .owl-nav button:hover {
  background: #D0A930;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6); }

.category-navigation .owl-nav button:active {
  transform: scale(0.95); }

.category-navigation .owl-prev {
  left: -25px; }

.category-navigation .owl-next {
  right: -25px; }

.category-navigation .owl-nav button span {
  display: none; }

.category-navigation .owl-nav button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px; }

.category-navigation .owl-prev:before {
  content: "\f053";
  /* fa-chevron-left */ }

.category-navigation .owl-next:before {
  content: "\f054";
  /* fa-chevron-right */ }

@media (max-width: 1200px) {
  .category-navigation .owl-prev {
    left: -15px; }
  .category-navigation .owl-next {
    right: -15px; } }

@media (max-width: 768px) {
  .category-navigation .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 14px; }
  .category-navigation .owl-prev {
    left: -10px; }
  .category-navigation .owl-next {
    right: -10px; }
  .category-navigation .owl-nav button:before {
    font-size: 14px; } }

.category-navigation .categories-container .category-item {
  width: 207px;
  align-items: center;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  color: #fff;
  letter-spacing: -0.5px;
  justify-content: start;
  font: 500 20px/1.3 "Fz Poppins", -apple-system, Roboto, Helvetica, sans-serif;
  margin: 0 auto; }

.category-navigation .categories-container .category-item:nth-child(2) {
  white-space: nowrap; }

@media (max-width: 991px) {
  .category-navigation .categories-container .category-item:nth-child(2) {
    white-space: initial; } }

.category-navigation .categories-container .category-item .category-image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%; }

.category-navigation .categories-container .category-item .category-content {
  align-self: center;
  display: flex;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 9px 0 7px; }

.category-navigation .categories-container .category-item:nth-child(2) .category-content {
  white-space: nowrap; }

@media (max-width: 991px) {
  .category-navigation .categories-container .category-item:nth-child(2) .category-content {
    white-space: initial; } }

.category-navigation .categories-container .category-item .category-content .category-text-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: auto 0; }

.category-navigation .categories-container .category-item:nth-child(2) .category-content .category-text-wrapper {
  white-space: nowrap; }

@media (max-width: 991px) {
  .category-navigation .categories-container .category-item:nth-child(2) .category-content .category-text-wrapper {
    white-space: initial; } }

.category-navigation .categories-container .category-item .category-content .category-text-wrapper .category-title {
  color: #fff;
  letter-spacing: -0.5px;
  font: 20px / 26px "Fz Poppins";
  margin: 0; }

/* Các class không sử dụng trong HTML hiện tại nhưng có thể cần thiết */
.navigation-header {
  z-index: 10;
  display: flex;
  margin-top: 124px;
  align-items: end;
  justify-content: space-between; }

@media (max-width: 991px) {
  .navigation-header {
    margin-top: 40px; } }

.menu-toggle-button {
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  display: flex;
  gap: 8px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #d0a930 0%, #b78828 100%);
  padding: 0 8px;
  border: none;
  cursor: pointer; }

.menu-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0; }

.special-item {
  min-width: 207px;
  align-items: stretch;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%; }

.special-image-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 13px 21px; }

@media (max-width: 991px) {
  .special-image-container {
    padding: 0 20px; } }

.image-wrapper {
  border-radius: 4px;
  position: relative;
  height: 164px;
  width: 164px;
  overflow: hidden; }

.aspect-ratio-keeper {
  transform: rotate(-0.7854rad);
  z-index: 0;
  display: flex;
  min-height: 164px;
  width: 100%; }

.special-category-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 164px;
  position: absolute;
  z-index: 0;
  max-width: 100%;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px; }

.special-content {
  align-self: center;
  display: flex;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.5px;
  justify-content: center;
  padding: 9px 0 7px;
  font: 500 20px/1.3 "Fz Poppins", -apple-system, Roboto, Helvetica, sans-serif; }

@media (max-width: 991px) {
  .special-content {
    white-space: initial; } }

.special-content .category-text-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: auto 0; }

@media (max-width: 991px) {
  .special-content .category-text-wrapper {
    white-space: initial; } }

.special-image-container-alt {
  width: 100%; }

.path-container {
  background-color: #262626;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  fill: #262626;
  margin: -18px 0;
  padding: 0 31px; }

@media (max-width: 991px) {
  .path-container {
    margin: 0 -9px 10px 0;
    padding: 0 20px; } }

/*--------------------------------------------------------------------------------
COLLECTION 
--------------------------------------------------------------------------------*/
.wrap-collection-title .heading-collection {
  margin: 50px 0; }

.wrap-collection-title .heading-collection h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0; }

.alert-no p, .alert-no-filter p {
  margin: 10px 0 20px; }

.box_sidebar {
  justify-content: center;
  align-items: stretch;
  border-radius: 16px;
  display: flex;
  width: 100%;
  flex-direction: column;
  background: var(--Linear);
  padding: 20px; }

/* ---------------------------  MENU CATEGORY  --------------------------- */
.tree-menu {
  padding: 0;
  margin: 0; }

.tree-menu li.tree-menu-lv1 a {
  padding: 5px 5px 5px 0;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1px; }

.tree-menu li.tree-menu-lv1 a .icon-control {
  font-size: 14px;
  position: relative;
  top: -2px;
  float: right;
  right: 5px; }

.tree-menu li.tree-menu-lv1.has-child ul.tree-menu-sub {
  display: none;
  padding-left: 15px; }

.tree-menu li.tree-menu-lv1.has-child ul.tree-menu-sub.show {
  display: block; }

.tree-menu li.tree-menu-lv1.has-child ul.tree-menu-sub li.tree-menu-lv2 ul.tree-menu-sub-lv3 {
  padding-left: 15px;
  display: none; }

.tree-menu li.tree-menu-lv1.has-child ul.tree-menu-sub li.tree-menu-lv2 ul.tree-menu-sub-lv3.show {
  display: block; }

.tree-menu li.tree-menu-lv1.has-child > ul {
  display: none;
  padding-left: 15px; }

.tree-menu > li > a {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1px; }

/* ---------------------------  FILTER  --------------------------- */
.content-filter .option {
  margin-top: 30px; }

.option .lb-filter {
  display: block;
  font-size: 15px;
  opacity: 1;
  margin-right: 5px;
  margin-bottom: 0;
  font-weight: normal; }

.custom-dropdown {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0px; }

.custom-dropdown::after {
  content: "\f078";
  font-family: FontAwesome;
  font-size: 13px;
  color: #252a2b;
  opacity: .42;
  display: block;
  position: absolute;
  top: 10px;
  right: 17px; }

.option .custom-dropdown .custom-dropdown__select {
  font-size: 14px;
  width: 100%;
  display: block;
  height: 30px;
  padding: 0 20px 0 0;
  border-color: transparent;
  border-bottom: 1px solid #000;
  background-color: #fff;
  outline: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-indent: 1px; }

.option .custom-dropdown {
  width: 100%; }

.option .custom-dropdown::after {
  content: "\f103";
  font-family: FontAwesome;
  font-size: 14px;
  color: #ffffff;
  display: block;
  position: absolute;
  top: 9px;
  right: 25px;
  opacity: 1; }

.option .option-children:not(:first-child) {
  margin-bottom: 30px; }

.option select option {
  background: #0A0A0A; }

.option.browse-tags .lb-filter {
  display: inline-block; }

.option.browse-tags .custom-dropdown {
  width: auto;
  float: right; }

.option.browse-tags {
  display: flex;
  justify-content: end;
  align-items: center; }

.option .custom-dropdown .custom-dropdown__select {
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--Border-Light-V1);
  align-self: stretch;
  display: flex;
  min-height: 40px;
  gap: 8px;
  overflow: hidden;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin: auto 0;
  padding: 8px 20px;
  background: transparent;
  color: var(--text-white-100);
  cursor: pointer; }

.left-module {
  margin-bottom: 20px;
  overflow: hidden; }

.block .title_block {
  display: block;
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: 700;
  text-transform: uppercase; }

.layered .layered_subtitle {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  padding: 10px 0 10px;
  cursor: pointer;
  position: relative; }

.layered .layered_subtitle span {
  font-weight: 600;
  font-size: 13px; }

.layered span.icon-control {
  position: relative;
  top: -2px;
  left: 5px;
  font-size: 8px; }

.group-filter[aria-expanded=false] .dropdown-filter .icon-control i:before {
  content: "\f067"; }

.group-filter[aria-expanded=false] .layered-content {
  display: none;
  height: 0; }

.group-filter[aria-expanded=true] .layered-content {
  height: auto; }

.group-filter .layered-content {
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }

.check-box-list {
  margin: 0 0 10px; }

.check-box-list li {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin: auto 0;
  padding: 8px 0; }

.check-box-list label {
  display: inline-block;
  cursor: pointer;
  line-height: 18px;
  font-weight: normal;
  margin-bottom: 0;
  color: var(--text-white-100);
  letter-spacing: var(--Typography-letter-spacing-body-bold);
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  font: var(--Typography-font-size-body-bold)/var(--Typography-line-height-body-bold) var(--Typography-font-family-font-body); }

.check-box-list li:hover label {
  color: #D0A930; }

.check-box-list input[type="checkbox"] {
  display: none; }

.filter-price li {
  font-size: 14px;
  margin-bottom: 5px; }

.filter-price li:last-child {
  margin-bottom: 0; }

.filter-price li span {
  font-size: 12px; }

.filter-color ul {
  padding: 0;
  margin: 0;
  overflow: hidden; }

.filter-color li {
  display: inline;
  margin: 0 10px 10px 0;
  line-height: normal;
  float: left; }

.filter-color li label {
  border: 1px solid #eaeaea;
  width: 25px;
  height: 25px;
  border-radius: 0;
  float: left;
  position: relative;
  background-size: contain; }

.filter-color li input[type="checkbox"]:checked + label:before {
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
  border-width: 0 0 2px 2px !important;
  height: 5px;
  width: 9px;
  z-index: 99;
  border: solid #fff;
  margin: 7px 0 0 7px; }

.filter-size li {
  text-align: center;
  margin-right: -1px;
  margin-bottom: -1px;
  float: left; }

.filter-size li label {
  width: 42px;
  height: 42px;
  line-height: 42px;
  position: relative;
  border: 1px solid #e5e5e5; }

.filter-size li input[type="checkbox"]:checked + label, .size-filter li:hover label {
  background-color: #111;
  color: #fff;
  border: 1px solid #111; }

.block .block_content {
  overflow-y: auto;
  overflow-x: hidden; }

.bl-filter [type="checkbox"]:not(:checked),
.bl-filter [type="checkbox"]:checked {
  position: absolute;
  left: -9999px; }

.bl-filter [type="checkbox"]:not(:checked) + label,
.bl-filter [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer; }

.bl-filter [type="checkbox"]:not(:checked) + label:before,
.bl-filter [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 4px; }

.bl-filter [type="checkbox"]:checked + label:before {
  border: 1px solid #000;
  background: #D0A930; }

.bl-filter [type="checkbox"]:not(:checked) + label:after,
.bl-filter [type="checkbox"]:checked + label:after {
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
  border-width: 0 0 2px 2px !important;
  height: 6px;
  width: 12px;
  border: solid #ffffff;
  margin: 9px 0 0 4px;
  left: 0;
  top: -3px;
  transition: all .2s; }

.bl-filter [type="checkbox"]:not(:checked) + label:after {
  opacity: 0; }

.bl-filter [type="checkbox"]:checked + label:after {
  opacity: 1; }

.bl-filter label:hover:before {
  border: 1px solid #000 !important; }

@media (max-width: 991px) {
  .block .title_block {
    position: relative;
    display: inline-block;
    margin: 0 0 0px; }
  .block .title_block span {
    display: block;
    top: 0px;
    right: 10px;
    position: absolute; }
  .block .block_content {
    display: none; }
  .box_sidebar.active .block .block_content {
    display: block !important; }
  /* collection */
  .box_sidebar {
    margin-bottom: 20px;
    padding: 10px 20px; }
  .wrap-collection-title .heading-collection {
    margin: 0; }
  .wrap-collection-title .heading-collection h1 {
    font-size: 20px;
    text-align: center;
    margin: 20px 0; }
  .no-product {
    text-align: center; }
  .left-module {
    margin: 0px 0 0; }
  .wrapper-collection-1 .pro-loop:nth-child(odd),
  .wrapper-collection-2 .pro-loop:nth-child(odd),
  #collection-body .pro-loop:nth-child(odd),
  .list-productRelated .pro-loop:nth-child(odd) {
    padding-right: 7.5px; }
  .wrapper-collection-1 .pro-loop:nth-child(even),
  .wrapper-collection-2 .pro-loop:nth-child(even),
  #collection-body .pro-loop:nth-child(even),
  .list-productRelated .pro-loop:nth-child(even) {
    padding-left: 7.5px; } }

/*** Policy ****/
.services-container .services-grid {
  display: flex;
  max-width: 100%;
  align-items: stretch;
  gap: 24px;
  justify-content: start;
  flex-wrap: wrap; }
  .services-container .services-grid .service-card {
    overflow: hidden;
    /* Mặc định: Mobile (1 item/hàng) */
    flex: 1 1 100%;
    /* Chiếm full width */
    max-width: 100%;
    /* Tablet (2 item/hàng) */
    /* Desktop (4 item/hàng) */ }
    @media (min-width: 576px) {
      .services-container .services-grid .service-card {
        flex: 1 1 calc(50% - 20px);
        /* 50% - gap */
        max-width: calc(50% - 20px); } }
    @media (min-width: 992px) {
      .services-container .services-grid .service-card {
        flex: 1 1 calc(25% - 20px);
        /* 25% - gap */
        max-width: calc(25% - 20px); } }
    .services-container .services-grid .service-card .service-content {
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #171717 44.27%, #3b230d 100%);
      padding: 30px 62px; }
      .services-container .services-grid .service-card .service-content .service-details {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch; }
        .services-container .services-grid .service-card .service-content .service-details .icon-container {
          align-items: center;
          border-radius: 100px;
          align-self: center;
          display: flex;
          width: 64px;
          gap: 10px;
          justify-content: start;
          height: 64px;
          background-color: #262626;
          padding: 16px; }
          .services-container .services-grid .service-card .service-content .service-details .icon-container .service-icon {
            aspect-ratio: 1;
            object-fit: contain;
            object-position: center;
            width: 32px;
            align-self: stretch;
            margin: auto 0; }
        .services-container .services-grid .service-card .service-content .service-details .service-title {
          color: #fff;
          text-align: center;
          letter-spacing: -0.5px;
          margin-top: 4px;
          font: 500 20px / 26px "Fz Poppins"; }

@media (max-width: 991px) {
  .services-container .services-grid .service-card .service-content {
    padding: 0 20px; } }
