section.announcement-bar {
    height: 5rem;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
	z-index: 999;
	position: relative;
	padding: 1rem 3rem;
    background-size: cover;
}

.announcement-bar .announcement--icon {
	width: 4rem;
	height: 4rem;
}

.announcement-bar .announcement--text {
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 600px) {
	span.announcement--text {
		font-size: 1.2rem;
		text-align: center;
		font-weight: 500;
		line-height: 1.5;
	}
	
	.announcement-bar .announcement--icon {
		display: none;
	}
}


.header {
  top: 0rem;
  left: 0;
  width: 100%;
  position: sticky;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}



.header__wrapper {
  background-color: white;
  transition: all 0.3s ease-out;
  border-bottom: 1px solid #e7e3e0;
}

.header.home .header__wrapper {
  background-color: transparent;
  border-bottom: none;
}

.header.home.active .header__wrapper {
  border-bottom: 1px solid #e7e3e0;
}


.home .header__wrapper:hover, 
.header.home.active .header__wrapper,
.header.home.nav-open{
  background-color: white;
  border-bottom: 1px solid rgba(153, 153, 153, 0.25);
}

.header.nav-hover .header__wrapper {
  background-color: white;
  z-index: -999;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 100%;

  height: 6.7rem;
  padding: 0 3.6rem;
	

}

.header__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto 3fr auto;
  grid-template-columns: auto auto 3fr auto;
  justify-content: center;
  align-items: center;
  gap: 3.6rem;

  width: 100%;
  max-width: 100%;
  height: 100%;
}

.section-hero {
    max-height: 90rem;
    overflow: hidden;
    max-width: 100%;
	margin-top: -6.7rem;
}

.section-hero img {
    object-fit: cover;
    max-height: 80rem;
    min-width: 100%;
}

.section.page_collection {
    position: relative;
    /*top: 6.6rem;*/
	margin-bottom: 6.6rem;
}

/* COL 1: LOGO - MOBILE NAV */
.header__col--logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}

.logo__img--header {
  max-height: 4rem;
  display: inline-block;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 3.6rem;
  width: 3.6rem;
  color: #333;
  display: inline-block;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* COL 2: MAIN NAVIGATION */
.header__col--main-nav {
  justify-self: flex-start;
  margin-left: 2rem;
  height: 100%;
  max-height: 100%;
  align-self: center;
}

.main-nav,
.main-nav__wrapper,
.main-nav__inner,
.header__mega-menu,
.header__mega-menu__nav,
.mega-menu__list,
.mega-menu__item {
  height: 100%;
}

.header__mega-menu--mobile {
  visibility: hidden;
  display: none;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;

}

.header__mega-menu__nav {
  display: flex;
  align-items: center;
}

.mega-menu__list {
  display: flex;
  justify-content: center;
  align-items: center;

  list-style: none;
}

/* TẾT only */
ul.mega-menu__list > li:nth-child(5) .mega-menu__item--title span {
    color: darkred;
}

.mega-menu__list li:not(:last-child) {
    margin-right: 2rem;
}

.mega-menu__item {
  cursor: pointer;
}

.mega-menu__item--title {
  height: 100%;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;


  font-size: 1.4rem;
  font-weight: 600;
}

.mega-menu__item--title::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  background-color: transparent;
  transition: all 0.3s ease-in-out;

  height: 3px;
  width: 100%;
}

.mega-menu__item:hover .mega-menu__link {
  color: #2a5583;
}

.mega-menu__item:hover .mega-menu__item--title::after {
  background-color: #2a5583;
}

.mega-menu__link span,
.icon-arrow-down {
  display: inline-block;
  vertical-align: middle;
}

.mega-menu__link:link,
.mega-menu__link:visited {
  color: #333;
  text-decoration: none;
}

.mega-menu__link:active,
.mega-menu__link:hover {
  color: #2A5583;
  text-decoration: none;
}

.icon-arrow-right {
  display: none;
  vertical-align: middle;
}
.main-nav__wrapper {
  position: relative;
}

.main-nav__inner {
  z-index: 1;
}

.main-nav__overlay {
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;

  height: 100vh;
  width: 100vw;

  background: rgba(7, 8, 8, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  opacity: 0;

  pointer-events: none;
}

.header__col--main-nav:hover .main-nav__overlay {
  opacity: 1;
}

/* EXPAND MEGA MENU */
.mega-menu__item--expand {
  position: fixed;
  left: 0;

  width: 100%;
  max-width: 100%;
  min-height: 21rem;


  pointer-events: none;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-top: 1px solid rgba(153, 153, 153, 0.199);
}

.header.active .mega-menu__item--expand {
  top: 6.7rem;
}

.expand-content__inner {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 0;
  column-gap: 2rem;

  width: 100%;
  height: 100%;
  margin: 0 3.6rem 1rem 3.6rem;
}

.expand-content__inner a:link,
.expand-content__inner a:visited {
  text-decoration: none;
}

.expand-content__inner a:hover,
.expand-content__inner a:active {
  color: #2a5583;
  text-decoration: underline;
}

.expand-content__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem 0 2.4rem 0;
}

.menu-level-1 {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
  min-height: 4rem;
}

.menu-level-1 a:hover,
.menu-level-1 a:active {
	color: #112234
}

.menu-level-1 a:link,
.menu-level-1 a:visited {
	color: #2a5584
}

.menu-level-2__list {
  list-style: none;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-menu__item--expand,
.expand-content__inner {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  background: white;
}

.mega-menu__item:hover .mega-menu__item--expand {
  opacity: 1;
  pointer-events: initial;
}

.mega-menu__item:hover .expand-content__inner {
  transform: translateY(1rem);
  opacity: 1;
  pointer-events: initial;
}

/* COL 3: SEARCH BAR */
.header__col--search {
  display: flex;
  justify-content: flex-end;
}

.search__form {
  max-width: 60%;
  border: 1.8px solid #00000063;
  border-radius: 9px;

  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 90em) {
	.search__form {
		max-width: 100%;
	}
}

.search__form-input {
  flex: 1;
  height: 3.6rem;
  border: none;
  margin-left: 1.2rem;
  max-width: 100%;

  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;

  background: none;
}

.search__btn {
  background: none;
  border: none;
  margin: 0 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  display: flex;
}

.search__icon {
  display: inline-block;

  width: 2.4rem;
  height: 2.4rem;
}

.hidden-search-bar__btn-close {
  background: none;
  border: none;
  color: #333;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  display: none;
}

/* COL 4: SECONDARY MENU */
.header__col--secondary-menu {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
}

.header__user,
.header__cart,
.header__hidden-search-bar--trigger {
  height: 100%;
  display: flex;
  align-items: center;

  /* Cart icon relative to item-count */
  position: relative;
	
  cursor:pointer;

  
}

.header__user, 
.hidden-search-bar__trigger-btn {
	margin-right: 1rem;
}



.header__icon {
  font-size: 2.4rem;
}

.header__icon-text {
  display: none;
}

.header__user a,
.header__cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.header__user a:link,
.header__user a:visited,
.header__cart a:link,
.header__cart a:visited {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

.header__user a:hover,
.header__user a:active,
.header__cart a:hover,
.header__cart a:active,
.hidden-search-bar__trigger-btn:hover {
  color: #2a5583;
}

/* HEADER HIDDEN SEARCH BAR TRIGGER */
.header__hidden-search-bar--trigger {
  display: none;
}

.hidden-search-bar__trigger-btn {
  background: none;
  border: none;

  display: flex;
  align-items: center;
  cursor: pointer;
}

/* HEADER USER */
.header__user-dropdown {
  position: absolute;
  /*top: 6.6rem;*/
	
  top: 0;	
  right: 0;
  width: 14rem;
  padding: 1.4rem 1.6rem 1.8rem 1.6rem;
  padding: 0;
  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  background-color: rgb(255, 255, 255);
  background-color: transparent;
}

.header__user-dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
	
  width: 100%;
  padding: 2rem;
	
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.header__user-dropdown-list a {
  display: inline-block;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid black;
}

.header__user-dropdown-list a:not(:last-child) {
  margin-bottom: 2rem;
}

.header__user:hover .header__user-dropdown {
  opacity: 1;
  pointer-events: initial;
}

.header__user:hover .header__user-dropdown-list {
  transform: translateY(6.6rem);
  background-color: white;
  box-shadow: 1.2rem 1.2rem 3.2rem rgba(0, 0, 0, 0.09);
}

/* HEADER CART */
.header__cart-item-count {
  font-size: 1rem;

  width: 2rem;
  height: 2rem;

  border: 2px solid #333;
  border-radius: 50%;
  background: #333;
  color: white;

  position: absolute;

  top: 3.5rem;
  left: 1rem;

  justify-content: center;
  align-items: center;
  display: flex;
}

.header__cart:hover .header__cart-item-count {
  background: #2a5583;
  border: 2px solid #2a5583;
}

.header__cart:hover .top-cart-content {
	display: inline-block;
	box-shadow: 0, 0, 15px, -5px rgba(9, 9, 9, 0.4);
	
}

.header__cart:hover ul#cart-sidebar {
	display: flex;
	flex-direction: column;
	box-shadow: 0, 0, 15px, -5px rgba(9, 9, 9, 0.4);
	background-color: white;
}

.sticky .header--main {
  z-index: 999;
  background-color: white;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

/**************************/
/* HERO SECTION */
/**************************/
.hero-img {
  max-width: 100%;
}



/* BREADCRUMB */
.page-wrapper {
	position: relative;
	/*
	top: 6.6rem;
	margin-bottom: 12rem
	*/
}

.page_login.page-wrapper {
	top: 0;
	margin-bottom: 0;
}

.section-breadcrumbs {
  background-image: linear-gradient( to right bottom, rgba(138, 109, 59, 0.15), rgba(138, 109, 59, 0.1)), url(//bizweb.dktcdn.net/100/434/745/themes/833029/assets/product-banner.jpg?1648442948602);
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%;
  height: 200px;
}

.page_collection .section-breadcrumbs {
	height: 45rem;
}

.sign-pen .section-breadcrumbs {
	margin-bottom: 0;
}

.breadcrumb-nav__list {
  display: flex;
  list-style: none;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1.2rem 1.2rem 0;
  gap: 1.2rem;
}

.breadcrumbs-nav a:link,
.breadcrumbs-nav a:visited {
  text-decoration: none;
  color: #333;
}

.breadcrumbs-nav a:hover,
.breadcrumbs-nav a:active {
  text-decoration: none;
  color: #cf711f;
}

.breadcrumbs {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: auto;
  height: 100%;
}


.breadcrumbs-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
	
  margin: 0;
  padding: 0 2rem;
}

.breadcrumbs-title h1 {
  display: inline-block;
  text-align: center;
  margin: 0;
}

/* Changes applied on collection pages */
.page_collection 
	.breadcrumbs-title {
		align-items: flex-start;
		justify-content: flex-start;
		padding: 8rem;
		background-color: #112234;
		width: 50%;
	}
.page_collection .breadcrumbs-title h1 {
	  display: inline-block;
	  text-align: left;
	  margin: 0;
	  color: white;
	}

.page_collection .breadcrumbs-nav a:link,
.page_collection .breadcrumbs-nav a:visited {
	  color: white;
	}

.page_collection .breadcrumb-nav__list {
	color: white;
	padding: 1.2rem 0;
}

	

.breadcrumb-featured-post {
	width: 50%;
	/*background-color: #112234;*/
}

.breadcrumb-featured-post img {
	height: 100%;
	min-width: 100%;
}

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

/* PRODUCT PAGE */


.product-details--images {
    width: 55rem;
	max-width: 50%;
}

.col_large_full.large-image, .col_large_default.large-image {
	position: relative;
}

.product-details--images .saleright {
    display: flex;
    align-items: center;
    justify-content: center;
	
    position: absolute;
	left: 15px;
    top: 10px;
    z-index: 10;
	
    background: #f1805f;
	color: white;
    font-size: 1.8rem;
    font-weight: 600;

    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 4px 0 0;
}

.product-details--metadata {
    padding: 2.4rem;
    border: 1px solid #999;
	max-width: 55rem;
	width: 100%;
}

.variant-option-reset {
    font-size: 1.4rem;
    text-decoration: underline;
    background-image: linear-gradient(#eee,#eee);
    background-size: 0 100%;
    background-repeat: no-repeat;
    padding: 2px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.variant-option-reset:hover {
    background-size: 10rem 100%;
}

.product-options {
    margin-bottom: 2rem;
}

.product-options .swatch > div {
	margin-bottom: 1rem;
}

/* PRODUCT DESCRIPTION */
.section__product-description {
  margin: 8rem 0;
  font-size: 1.6rem;
}

.section__product-description__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-description-text { 
    padding: 2rem;
    min-width: 100%;
	min-height: 20rem;
	background: #eeeae7;
}

.icon-text-expand {
	display: none;
}

.section__product-description .heading-tertiary {
    background: #eeeae7;
    width: 100%;
    padding: 2rem;
	margin-bottom: 0;
	
	display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 47em) {
	.icon-text-expand {
		display: inline-block;
	}
	
	.product-description-text { 
		transform: translateY(-100%);
		visibility: hidden;
		pointer-events: none;
		background: transparent;
		opacity: 0;
		z-index: -1;
		display: none;
		transition: all 0.3s ease-in-out;
	}
	
	.section__product-description .heading-tertiary {
		justify-content: space-between;
	}
}



.section__product-description .text-expand .product-description-text {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
	
	display: flex;
	gap: 2rem;
	
	color: #333;
	background-color: #eeeae7;
}



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

.form_product_content {
    display: flex;
    flex-direction: column;
}

.section__product-details__wrapper {
	display: flex;
	gap: 2.4rem;
	align-items: flex-start;
	justify-content: center;
}

.section__product-details {
    margin-top: 3.6rem;
}

.soluong.show {
    display: flex;
	margin-bottom: 1rem;
}

.button_actions .btn_base.btn_add_cart {
    /*padding: 1.2rem 2.4rem;*/
    display: flex;
    align-items: center;
	color: white;
    background: #333;
	height: auto;
}

.button_actions .btn_base.btn_add_cart[disabled] {
	background-color: #eeeae7;
    border: 1px solid #eeeae7;
    color: #555;
}

.btn-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2rem;
}

.section__product-related-items {
    display: flex;
}

@media (max-width: 345px) {
	.section__product-related-items {
		margin-bottom: 0;
	}
}

.product-item-price.price-box {
    font-size: 1.6rem;
}

@media (max-width: 42em) and (min-width: 37em){	
	.related-item .product-item-price.price-box {
		font-size: 1.4rem;
	}
}

.item_product_main.related-item {
	box-shadow: none;
	border: 0.5px solid #eaeaea;
}

/* SECTION SINGLE FEATURED CATEGORY */
.section-single-featured-category__wrapper {
  max-width: 130rem;
  margin: 0 auto;
  padding: 2rem;
  margin-bottom: 2rem;
}

.featured-category-post-list {
  display: flex;
  justify-content: center;
  align-items: center;

  list-style: none;
}
	
.featured-category-post-list li {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.featured-post-img {
  width: 44rem;
  max-width: 100%;
}
	
@media (min-width: 25em) {
	.featured-category-post-list li:not(:last-child) {	
	  margin-right: 4rem;
	}
}

@media (max-width: 37em) {
	.featured-category-post-list li {
		gap: 0;
	}
}

@media (max-width: 25em) {
	.section-single-featured-category__wrapper {
		padding: 0;
	}
	
	.featured-category-post-list {
		flex-direction: column;
	}
	
	
	.featured-category-post-list li {	
	  margin-bottom: 2rem;
	  margin-right: 0;
	}
	
	.featured-post-img {
		margin-bottom: 1.5rem;
	}
	
	.featured-category-post-list li:nth-child(even) {
		flex-direction: column-reverse;
	}
}



.featured-post-textbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
  padding: 9.6rem 0;
}	

@media (max-width: 48em) {
	.featured-post-textbox {
		padding: 3.6rem 0;
		max-width: 100%;
	}
}

@media (max-width: 37em) {
	.featured-post-textbox {
		padding: 2.4rem 0;
	}
}

@media (max-width: 25em) {
	.featured-post-textbox {
		padding: 1.2rem;
		max-width: 90%;
	}
}

.featured-post-header.heading-tertiary {
  margin-bottom: 1.2rem;
  text-align: center;
}

.featured-post-text {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;

  margin-bottom: 2.4rem;
}

@media (max-width: 25em) {
	.featured-post-text {
		font-size: 1.4rem
	}
}
	
.featured-post-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
	
  background: none;
  border: 1px solid #333;

  padding: 1.2rem 2.4rem;

  font-size: 2.4rem;
  text-transform: uppercase;
  cursor: pointer;
}
	
.featured-post-link
{
    color: #cd522d;
    font-weight: 700;
    font-size: 1.8rem;
}

.featured-post-cta-btn a.featured-post-link:hover
{
    color: #f59e83 !important;
    font-weight: 700;
    font-size: 1.8rem;
}

@media (max-width: 48em) {
	.featured-post-cta-btn {
		font-size: 1.8rem;
	}
}

@media (max-width: 37em) {
	.featured-post-cta-btn {
		padding: 1.2rem;
	}
}

/* RESPONSIVE BREADCRUMBS SECTION ON COLLECTION PAGES */
@media (max-width: 64em) {
	.page_collection .breadcrumbs-title {
		padding: 8rem;
	}
}

@media (max-width: 48em) {
	.page_collection .section-breadcrumbs {
		height: auto;
	}
	
	.breadcrumbs {
		flex-direction: column-reverse;
	}
	
	.page_collection .breadcrumbs-title {
		width: 100%;
		min-height: 14rem;
		justify-content: center;
		align-items: center;
		padding: 2rem;
	}
	.page_collection .breadcrumbs-title h1 {
		text-align: center;
	}
	
	.page_collection .breadcrumb-featured-post {
		width: 100%;
		height: 20rem;
	}
}


/* New product description template */
.template ol.product-description-list {
    list-style: unset;
    margin: 0 4rem;
    line-height: 2;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.template ol.product-specification-list {
    list-style: none;
    line-height: 2;
    flex: 1;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.template .product-description.heading-tertiary {
    display: none;
}

.template .product-specification {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s ease-in-out;
	line-height: 1.5
}

.template .product-overall-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
	gap: 1rem;
	margin-right: 4rem;
	max-width: 65%;
}


.template .product-overall-description div {
	line-height: 1.5;
}

.template .product-specification-heading {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.template .product-description-text {
    display: flex;
    padding: 8rem 36rem;
    justify-content: space-between;
    font-weight: 500;
    color: #333;
    transform: translate3d(0, 10px, 0)
}

@media (max-width: 1500px) {
   .template .product-description-text {
        padding: 8rem 20rem;
        justify-content: flex-start;
    } 
}

@media (max-width: 1024px) {
   .template .product-description-text {
        padding: 8rem 10rem;
        justify-content: space-between;
    } 
}

.template .product-overall-description {
    transform: translate3d(0, 0, 0);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 752px) {
    .template .product-description.heading-tertiary {
        display: flex;
    }
	
	.template .product-overall-description {
		max-width: 100%;
		margin-right: 0;
	}
    
   .template .product-description-text {
        padding: 1rem 4rem 4rem;
        justify-content: space-between;
        display: none;
	   	flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;

        color: transparent;
        display: none;
    } 
	
}



@media (max-width: 630px) {
   .template .product-description-text {
        padding: 1rem 4rem 4rem;

        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;

        color: transparent;
        display: none;
    } 
     .template .product-description-text ol {
         line-height: 1.5
     }
}