/* ====== Root Variables (Colors only) ====== */
:root {
  --color-FFFFFF: #FFFFFF;
  --color-C19D62: #C19D62;
  --color-000000: #000000;
  --color-C8A975: #C8A975;
  --color-8F8F8F: #8F8F8F;
  --color-4D4D4D: #4D4D4D;
  --color-514E4E: #514E4E;
  --color-3D3D3D: #3D3D3D;
  --color-222222: #222222;
  --color-B77D4F: #B77D4F;
  --color-767676: #767676;
}

/* ====== Base ====== */
body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-4D4D4D);
  /* default text color */
  margin: 0 auto !important;
}

/* ====== Font Families ====== */
.f-Nunito {
  font-family: 'Noto Sans', sans-serif;
}

.f-Noto-Sans {
  font-family: 'Noto Sans', sans-serif;
}

.f-Genos {
  font-family: 'Genos', sans-serif;
}

/* ====== Font Sizes ====== */
.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-24 {
  font-size: 24px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fs-40 {
  font-size: 40px;
}

.fs-48 {
  font-size: 48px;
}

.fs-60 {
  font-size: 60px;
}

/* ====== Font Weights ====== */
.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* ====== Text Utils ====== */
.text-uppercase {
  text-transform: uppercase;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}
.letter-spacing--2{
	letter-spacing: -0.3px;
}
.lh-0 {
  line-height: 0;
}

.lh-100 {
  line-height: 100%;
}

.lh-130 {
  line-height: 130%;
}

.lh-150 {
  line-height: 150%;
}

.o-70 {
  opacity: 70%;
}

.o-80 {
  opacity: 80%;
}

/* ====== Colors ====== */
.color-FFFFFF {
  color: var(--color-FFFFFF);
}

.color-C19D62 {
  color: var(--color-C19D62);
}

.color-000000 {
  color: var(--color-000000);
}

.color-C8A975 {
  color: var(--color-C8A975);
}

.color-8F8F8F {
  color: var(--color-8F8F8F);
}

.color-4D4D4D {
  color: var(--color-4D4D4D);
}

.color-514E4E {
  color: var(--color-514E4E);
}

.color-3D3D3D {
  color: var(--color-3D3D3D);
}

.color-222222 {
  color: var(--color-222222);
}

.color-B77D4F {
  color: var(--color-B77D4F);
}

.color-767676 {
  color: var(--color-767676);
}

.bg-FFFFFF {
  background-color: var(--color-FFFFFF);
}

.bg-C19D62 {
  background-color: var(--color-C19D62);
}

.bg-000000 {
  background-color: var(--color-000000);
}

.bg-C8A975 {
  background-color: var(--color-C8A975);
}

.bg-8F8F8F {
  background-color: var(--color-8F8F8F);
}

.bg-4D4D4D {
  background-color: var(--color-4D4D4D);
}

.bg-514E4E {
  background-color: var(--color-514E4E);
}

.bg-3D3D3D {
  background-color: var(--color-3D3D3D);
}

.bg-222222 {
  background-color: var(--color-222222);
}

.bg-B77D4F {
  background-color: var(--color-B77D4F);
}

.bg-767676 {
  background-color: var(--color-767676);
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

.list-style-none {
  list-style: none;
}

/* ====== Spacing ====== */
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-68 {
  padding-top: 68px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.m-auto {
  margin: 0 auto;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-32 {
  margin-bottom: 28px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mr-16 {
  margin-right: 16px;
}

.mh-40px {
  max-height: 40px;
}

.mw-500px {
  max-width: 500px;
}

/* ====== Gap ====== */
.g-8 {
  gap: 8px;
}

.g-16 {
  gap: 16px;
}

.g-20 {
  gap: 20px;
}

.g-24 {
  gap: 24px;
}

.g-48 {
  gap: 48px;
}

.g-80 {
  gap: 80px;
}

.mw-650 {
  max-width: 650px;
}

@media (max-width: 1199.97px) {
	
}
@media (max-width: 991.97px) {
	
}
@media (max-width: 767.97px) {
	body {
	  font-size: 16px;
	} 
	.fs-60{font-size: 30px;} /*pxcadd*/
	.fs-48{font-size:24px;}
	.fs-40{font-size:24px;}
	.fs-32{font-size:20px;}
	.fs-30{font-size: 20px;} /*pxcadd*/
	.fs-28{font-size: 18px;} /*pxcadd*/	
	.fs-24{font-size:18px;}
	.fs-16{font-size:14px;} 



	.py-100{padding-top:50px;padding-bottom:50px} /*pxcadd*/	
.py-80{padding-top:40px;padding-bottom:40px}
.pt-80{padding-top:40px}
.pb-80{padding-bottom:40px}
	.pt-40{padding-top:24px} /*pxcadd*/	
	.pt-68{padding-top:32px} /*pxcadd*/	
	.pt-100{padding-top:50px} /*pxcadd*/	
	.pb-100{padding-bottom:50px} /*pxcadd*/
	.mb-8{margin-bottom:8px} /*pxcadd*/
	.mb-16{margin-bottom:16px} /*pxcadd*/
	.mb-20{margin-bottom:20px} /*pxcadd*/
.mb-24{margin-bottom:16px;}
	.mb-28{margin-bottom:24px} /*pxcadd*/
	.mb-32{margin-bottom:24px} /*pxcadd*/
.mb-40{margin-bottom:24px}
	.mb-80{margin-bottom:40px} /*pxcadd*/
	.mr-16{margin-right:16px} /*pxcadd*/
	.mh-40px{max-height:31px} /*pxcadd*/
	.mw-500px{max-width:500px} /*pxcadd*/
	.g-20{gap:20px} /*pxcadd*/
	.g-24{gap:8px} /*pxcadd*/
	.g-48{gap:32px} /*pxcadd*/
	.g-80{gap:40px} /*pxcadd*/
	
	.d-mobile-none {display:none;} 
	.g-mb-8{gap:8px;}
	.mb-mb-8{margin-bottom:8px;}
	.mb-mb-24{margin-bottom:24px;}
	.fs-mb-20{font-size:20px;}
}

/* =========================================================
   BOOTSTRAP-LIKE CLASSES (có prefix dp- để tránh trùng)
   ========================================================= */

/* ====== Container ====== */
.dp-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1264px;
}
 
.position-absolute{
	position: absolute;
}
.position-relative {
  position: relative;
}

.h-100 {
  height: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ====== Display ====== */
.dp-d-flex {
  display: flex;
}

.dp-d-grid {
  display: grid;
}

.dp-d-block {
  display: block;
}

.dp-d-inline {
  display: inline;
}

.dp-d-inline-block {
  display: inline-block;
}

/* ====== Flexbox ====== */
.dp-flex-row {
  flex-direction: row;
}

.dp-flex-column {
  flex-direction: column;
}

.dp-justify-start {
  justify-content: flex-start;
}

.dp-justify-center {
  justify-content: center;
}

.dp-justify-end {
  justify-content: flex-end;
}

.dp-justify-between {
  justify-content: space-between;
}

.dp-justify-around {
  justify-content: space-around;
}

.dp-justify-evenly {
  justify-content: space-evenly;
}

.dp-align-start {
  align-items: flex-start;
}

.dp-align-center {
  align-items: center;
}

.dp-align-end {
  align-items: flex-end;
}

.dp-align-stretch {
  align-items: stretch;
}

.dp-flex-grow-1 {
  flex-grow: 1;
}

.dp-flex-shrink-0 {
  flex-shrink: 0;
}

/* ====== Grid ====== */
.dp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dp-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}


/*Woo start*/
.add-to-cart-ajax.loading,
.single_add_to_cart_button_ajax.loading {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}

a.added_to_cart.wc-forward {
  display: none !important;
}

.ajax_add_to_cart.loading:after,
.single_add_to_cart_button_ajax.loading:after {
  content: '';
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.5) !important;
  z-index: 9 !important;
  animation: unset !important;
}

.ajax_add_to_cart.loading:before,
.single_add_to_cart_button_ajax.loading:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/box-loading.gif);
  background-repeat: no-repeat;
  background-position: center;
}

.ajax_add_to_cart.loading {
  background: #c19d62;
}

.ajax_add_to_cart.loading svg {
  opacity: 0;
}

/*Woo start*/

/*Theme start*/
.btn {
  font-size: 16px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 6px;
  background: #C19D62;
  padding: 12px 40px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  text-align: center;
}

/* overlay gradient */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(94.61deg, #FCE08B 0%, #D9A641 25%, #CC9629 50%, #D9A641 75%, #FCE08B 100%), linear-gradient(94.61deg, #FCE08B 0%, #E6B85C 25%, #D9B54B 50%, #E5B85C 75%, #FCE08B 100%);
  border: 1px solid;
  border-image-source: linear-gradient(93.11deg, #FCE08B 0%, #FFFFFF 50%, #FCE08B 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-small {
  padding: 8px 35px;
}

.btn-large {
  padding: 12px 35px;
}

.btn-primary {
  background: linear-gradient(94.61deg, #FCE08B 0%, #D9A641 25%, #CC9629 50%, #D9A641 75%, #FCE08B 100%), linear-gradient(94.61deg, #FCE08B 0%, #E6B85C 25%, #D9B54B 50%, #E5B85C 75%, #FCE08B 100%) !important;
  border: 1px solid !important;
  border-image-source: linear-gradient(93.11deg, #FCE08B 0%, #FFFFFF 50%, #FCE08B 100%) !important;
}

.btn-primary:active {
  transform: translateY(1px);
}

.main-content ul,.sc-ProductHighlight ul,.woocommerce-MyAccount-navigation ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-content ul li,.sc-ProductHighlight ul li,.woocommerce-MyAccount-navigation ul li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.main-content ul li:last-child,.sc-ProductHighlight ul li:last-child,.woocommerce-MyAccount-navigation  ul li:last-child{
  margin-bottom: 0;
}

.main-content ul li::before,.sc-ProductHighlight ul li::before,.woocommerce-MyAccount-navigation ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.1444 8.82774C14.3415 8.74779 14.4705 8.5563 14.4705 8.34362C14.4705 8.13087 14.3415 7.93938 14.1444 7.85947L2.47663 2.31848C2.28771 2.24189 2.0715 2.28219 1.92286 2.42169C1.77421 2.5612 1.72029 2.77442 1.78476 2.96781L5.14348 8.28614L1.78477 13.7194C1.72031 13.9127 1.77424 14.126 1.92289 14.2654C2.07147 14.405 2.28772 14.4453 2.47664 14.3687L14.1444 8.82774Z" fill="%23C19D62"/></svg>')no-repeat center center;
  background-size: contain;
}