:root {
  /* Color Palette */
  --color-primary: #0a76f2;
  --color-secondary-1: #72c4f8;
  --color-secondary-2: #0098ff;
  --color-black: #000000;
  --color-dark: #444;
  --color-dark-1: #222222;
  --color-dark-2: #444444;
  --color-dark-3: #666666;
  --color-grey-1: #888888;
  --color-grey-2: #cccccc;
  --color-light-1: #f6f6f6;
  --color-white: #ffffff;
  --color-warning: #f19a1f;
  --color-error: #ba0000;
  --color-success: #76ca66;
  --color-processing: #a0c3ff;
  --color-yellow: #F57806;
  --color-yellow-2: #FAE78A;

  /* Button Colors */
  --button-primary: #ee8c00;
  --button-hover: #bd6f00;

  /* Typography - Headings */
  --font-h1: 3rem; /* 42px */
  --font-h2: 2.625rem; /* 32px */
  --font-h3: 2rem; /* 28px */
  --font-h4: 1.5rem; /* 24px */
  --font-h5: 1.25rem; /* 20px */
  --font-h6: 1.125rem; /* 18px 
*/
  /* Typography - Subheading 1 */
  --font-sub1-1: 2.625rem; /* 42px */
  --font-sub1-2: 2rem; /* 32px */
  --font-sub1-3: 1.5rem; /* 24px */
  --font-sub1-4: 1.25rem; /* 20px */
  --font-sub1-5: 1.125rem; /* 18px */
  --font-sub1-6: 1rem; /* 16px */
  --font-sub1-7: 0.875rem; /* 14px */

  /* Typography - Subheading 2 */
  --font-sub2-1: 2.625rem; /* 42px */
  --font-sub2-2: 2rem; /* 32px */
  --font-sub2-3: 1.5rem; /* 24px */
  --font-sub2-4: 1.25rem; /* 20px */
  --font-sub2-5: 1.125rem; /* 18px */
  --font-sub2-6: 1rem; /* 16px */
  --font-sub2-7: 0.875rem; /* 14px */

  /* Typography - Bodytext */ 
  --font-body1: 1.25rem; /* 20px */
  --font-body2: 1.125rem; /* 18px */
  --font-body3: 1rem; /* 16px */
  --font-body4: 0.875rem; /* 14px */
  --font-body5: 0.75rem; /* 12px */

  /* Spacing */
  --spacing-1: 0.25rem; /* 4px *  /
  --spacing-2: 0.5rem; /* 8px */
  --spacing-3: 1rem; /* 16px */
  --spacing-4: 1.5625rem; /* 25px */
  --spacing-5: 2rem; /* 32px */
  --spacing-6: 2.5rem; /* 40px */
  --spacing-7: 3.5rem; /* 56px */

  /* Layout */
  --max-width-container: 95.5rem; /* 1400px */
}

/* General Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
button {
  cursor: pointer;
}
ul {
  list-style-type: none;
}
section {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
main {
	position:relative;
  margin-top: 6.2rem;
  /*background: #FBF9F6;*/
  z-index: 0;
}
a {
  text-decoration: none;
}
body {
  line-height: 1.5;
  color: var(--color-dark-2);
  background-color: var(--color-white);
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  touch-action: manipulation;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  vertical-align: baseline;
}
.hidden {
  display: none;
}

@font-face {
    font-family: 'Nunito-Medium'; /* Tên bạn đặt cho font */
    src: url('../fonts/Nunito/Nunito-Medium.ttf') format('opentype'); /* Đường dẫn đến file .otf */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito-Black'; /* Tên bạn đặt cho font */
    src: url('../fonts/Nunito/Nunito-Black.ttf') format('opentype'); /* Đường dẫn đến file .otf */
    font-weight: bold;
    font-style: normal;
}
*{
	 font-family: 'Nunito-Medium', sans-serif;
	 box-shadow:border-box;
}
html {
  font-family: 'Nunito-Medium', sans-serif;
  font-size: 1vw;
}
b {
  font-family: 'Nunito-Black', sans-serif;
}
img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

/* Headings */
h1, .h1 {
  font-size: var(--font-h1);
  font-weight: bold;
}

h2, .h2 {
  font-size: var(--font-h2);
  font-weight: bold;
  line-height: 3rem;
}

h3, .h3 {
  font-size: var(--font-h3);
  font-weight: bold;
}

h4, .h4 {
  font-size: var(--font-h4);
  font-weight: bold;
}

h5, .h5 {
  font-size: var(--font-h5);
  font-weight: bold;
}

h6, .h6 {
  font-size: var(--font-h6);
  font-weight: bold;
}
.w-100 { width: 100%; }
.h-100 { height: 100%; }

.margin-0 { margin: 0; }
.mb-10 { margin-bottom: .625rem; }
.mb-15 { margin-bottom: 1rem; }
.mb-20 { margin-bottom: 1.25rem; }
.mb-25 { margin-bottom: 1.5rem; }
.mb-30 { margin-bottom: 1.875rem; }
.mb-40 { margin-bottom: 2.5rem; }
.mb-50 { margin-bottom: 3.125rem; }
.mb-60 { margin-bottom: 3.75rem; }

.mt-10 { margin-top: .625rem; }
.mt-15 { margin-top: 1rem; }
.mt-20 { margin-top: 1.25rem; }
.mt-25 { margin-top: 1.5rem; }
.mt-30 { margin-top: 1.875rem; }
.mt-40 { margin-top: 2.5rem; }
.mt-50 { margin-top: 3.125rem; }
.mt-60 { margin-top: 3.75rem; }

.ml-5  { margin-left: 5px !important; }
.ml-10 { margin-left: .625rem; }
.ml-15 { margin-left: 1rem; }
.ml-20 { margin-left: 1.25rem; }
.ml-25 { margin-left: 1.5rem; }
.ml-30 { margin-left: 1.875rem; }
.ml-40 { margin-left: 2.5rem; }
.ml-50 { margin-left: 3.125rem; }
.ml-60 { margin-left: 3.75rem; }

.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: .625rem; }
.mr-15 { margin-right: 1rem; }
.mr-20 { margin-right: 1.25rem; }
.mr-25 { margin-right: 1.5rem; }
.mr-30 { margin-right: 1.875rem; }
.mr-40 { margin-right: 2.5rem; }
.mr-50 { margin-right: 3.125rem; }
.mr-60 { margin-right: 3.75rem; }

.pd-10 { padding: .625rem; }
.pd-15 { padding: 1rem; }
.pd-20 { padding: 1.25rem; }
.pd-25 { padding: 1.5rem; }
.pd-30 { padding: 1.875rem; }
.pd-40 { padding: 2.5rem; }
.pd-50 { padding: 3.125rem; }
.pd-60 { padding: 3.75rem; }

.pd-10-0 { padding: .625rem 0; }
.pd-15-0 { padding: 1rem 0; }
.pd-20-0 { padding: 1.25rem 0; }
.pd-25-0 { padding: 1.5rem 0; }
.pd-30-0 { padding: 1.875rem 0; }
.pd-40-0 { padding: 2.5rem 0; }
.pd-50-0 { padding: 3.125rem 0; }
.pd-60-0 { padding: 3.75rem 0; }

.pd-0-10 { padding: 0 .625rem; }
.pd-0-15 { padding: 0 1rem; }
.pd-0-20 { padding: 0 1.25rem; }
.pd-0-25 { padding: 0 1.5rem; }
.pd-0-30 { padding: 0 1.875rem; }
.pd-0-40 { padding: 0 2.5rem; }
.pd-0-50 { padding: 0 3.125rem; }
.pd-0-60 { padding: 0 3.75rem; }

/* Subheading 1 */
.subheading-1-1 {
  font-size: var(--font-sub1-1);
  font-weight: 600;
}

.subheading-1-2 {
  font-size: var(--font-sub1-2);
  font-weight: 600;
}

.subheading-1-3 {
  font-size: var(--font-sub1-3);
  font-weight: 600;
}

.subheading-1-4 {
  font-size: var(--font-sub1-4);
  font-weight: 600;
}

.subheading-1-5 {
  font-size: var(--font-sub1-5);
  font-weight: 600;
}

.subheading-1-6 {
  font-size: var(--font-sub1-6);
  font-weight: 600;
}

.subheading-1-7 {
  font-size: var(--font-sub1-7);
  font-weight: 600;
}

/* Subheading 2 */
.subheading-2-1 {
  font-size: var(--font-sub2-1);
  font-weight: 500;
}

.subheading-2-2 {
  font-size: var(--font-sub2-2);
  font-weight: 500;
}

.subheading-2-3 {
  font-size: var(--font-sub2-3);
  font-weight: 500;
}

.subheading-2-4 {
  font-size: var(--font-sub2-4);
  font-weight: 500;
}

.subheading-2-5 {
  font-size: var(--font-sub2-5);
  font-weight: 500;
}

.subheading-2-6 {
  font-size: var(--font-sub2-6);
  font-weight: 500;
}

.subheading-2-7 {
  font-size: var(--font-sub2-7);
  font-weight: 500;
}

/* Bodytext */
.bodytext-1 {
  font-size: var(--font-body1);
  font-weight: 400;
}

.bodytext-2 {
  font-size: var(--font-body2);
  font-weight: 400;
}

.bodytext-3 {
  font-size: var(--font-body3);
  font-weight: 400;
}

.bodytext-4 {
  font-size: var(--font-body4);
  font-weight: 400;
}

.bodytext-5 {
  font-size: var(--font-body5);
  font-weight: 400;
}

.text-white {
  color: var(--color-white);
}
.uppercase {
  text-transform: uppercase;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.red {
  color: red;
}

/*Primary Button*/
.primary-button {
  background-color: #2b2b2b;
  color: #ffffff;
  border-radius: 8px;
  padding: var(--spacing-3) var(--spacing-4);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.primary-button:hover {
  background-color: #bd6f00;
}

.primary-button:disabled {
  background-color: #888888;
  cursor: not-allowed;
}
/* Becondary Button */
.secondary-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #41633d;
  border-radius: 8px;
  padding: var(--spacing-3) var(--spacing-4);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.secondary-button:hover {
  background-color: #56c346;
  color: #2b2b2b;
  border-color: #56c346;
}

.secondary-button:disabled {
  background-color: transparent;
  color: #888888;
  border-color: #888888;
  cursor: not-allowed;
}
/*Tertiary Button*/
.tertiary-button {
  background-color: transparent;
  color: #41633d;
  border-radius: 8px;
  padding: var(--spacing-3) var(--spacing-4);
  cursor: pointer;
  transition: color 0.3s ease;
  border: none; /* Nếu cần viền, có thể thêm */
}
.tertiary-button:hover {
  color: #56c346;
}

.tertiary-button:disabled {
  color: #888888;
  cursor: not-allowed;
}

/* Containers */
.container {
  max-width: var(--max-width-container);
  margin: 0 auto;
}
/* bread-crumbs */
.bread-crumbs {
	display:flex;
	align-items:center;
	padding-bottom:1.5rem;
	padding-top:1.5rem;
}
.bread-crumbs .icon_home {
	display:flex;
	align-items:center;
}
.bread-crumbs .space-bread{
	display:block;
	margin-left:0.5rem;
	margin-right:0.5rem;
}
.bread-crumbs a {
	color: var(--color-primary, #41633D);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.5rem */
	text-decoration-line: underline;
}
.bread-crumbs .last-breadcrumbs {
	color: var(--color-grey-1, #888);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.5rem */
}
.bread-crumbs .icon_home img {
	width:0.88rem;
	height:0.88rem;
	margin-right:0.25rem;
}
html {
	scroll-behavior: smooth;
}

/*contact form*/
.screen-reader-response {
	display:none;
}
.wpcf7-not-valid-tip{
	display:none;
}
.wpcf7-response-output{
	max-width:22rem;
	color:var(--color-white);
}
::-webkit-scrollbar {
  width: .625rem;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(#f9d9f9);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #0a76f2 30%,
    #469BD5 100%
  );
  border-radius: 99rem;
}
.yellow-button, .blue-button {
  min-height: 2.2rem;
  line-height: 2.2rem;
  width: 43%;
  text-align: center;
  border-radius: 3rem;
}
.yellow-button {
  background: linear-gradient(90deg, #DF6C02 0%, #F57806 100%);
  transition: all 0.5s ease;
  box-shadow: 3px 2px 0px 0px #CC8827;
  border: 2px solid var(--color-white);

}
.yellow-button a {
  background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-weight: bold;
}
.blue-button {
  min-height: 3rem;
  line-height: 3rem;
  /*width: 49%;*/
  transition: all 0.5s ease;
}
.blue-button a {
  display: block;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 3rem;
  box-shadow: 3px 2px 0px 0px #73c6ff;
}
.blue-color {
  color: var(--color-primary);
}
.blue-button:hover a {
  color: var(--color-white);
  border: 2px solid var(--color-white);
  background: linear-gradient(90deg, #0a76f2 0%, #469BD5 100%);
}
.yellow-button:hover {
  background: linear-gradient(90deg, #DF6C02 0%, #a44f02 100%);
}
.color-gradient-blue {
  color: var(--color-primary);
  font-family: 'Nunito-Black', sans-serif;
}
.bg-gradient-yellow {
  background: linear-gradient(270deg, #FFF3A5 0%, #F7DE7C 80.38%, #B27F2B 164.04%) !important;
}
.bg-gradient-blue {
  background: linear-gradient(90deg, #0a76f2 0%, #0098ff 100%) !important;
  color: var(--color-white);
}
.bg-blue {
  background: var(--color-primary);
  color: var(--color-white);
}
.color-smc {
  color: var(--color-yellow);
}
.position-absolute {
  position: absolute;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.align-items-center {
  align-items: center;
}
.bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.d-none {
  display: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
/*// gradient text*/
.gradient-text {
  font-family: 'Nunito-Black', sans-serif;
  background: #0a76f2;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0px white;
  position: relative;
  display: flex;
  justify-content: space-around;  
}
.gradient-text::before {
  content: attr(data-text);
  position: absolute;
  top: 2px;
  /*left: 1px;*/
  z-index: -1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: 3px -1px 1px #c6c6c6, 4px 1px 2px rgb(190 179 57);
}

.col-lg-12, .col-md-12 {
  width: 100%;
}
.col-lg-3, .col-md-3 {
  width: 23%;
  margin: 0 1%;
}
.col-lg-9, .col-md-9 {
  width: 73%;
  margin: 0 1%;
}
.col-lg-6 {
  width: 48%;
  margin: 0 1%;
}
.col-lg-4, .col-md-4 {
  width: 31.33%;
  margin: 0 1%;
}
.col-lg-8, .col-md-8 {
  width: 64.33%;
  margin: 0 1%;
}
/* table */
.table:not(.table-dark) {
  color: inherit;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  background-color: transparent;
}
table {
    border-collapse: collapse;
}
.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table-bordered td, .table-bordered th {
    /*border: 1px solid #dee2e6;*/
}
.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
/* Cart */
.header .cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 999;
}
.header .cart-overlay.active {
  display: flex;
}
.header .view-cart {
  height: 100vh;
  width: 21.25rem; /* 340px */
  background-color: #f5f5f5;
  border-left: 0.0625rem solid #ddd; /* 1px */
  box-shadow: -0.125rem 0 0.3125rem rgba(0, 0, 0, 0.1); /* -2px 0 5px */
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateX(100%); /* Đặt cart ngoài màn hình */
  transition: transform 0.5s ease-in-out; /* Thêm hiệu ứng trượt */
}
.header .cart-overlay.active .view-cart {
  transform: translateX(0); /* Khi cart mở ra, trượt vào màn hình */
}
.header .close-cart-button {
  background: none;
  border: none;
  font-size: 1.25rem; /* 20px */
  cursor: pointer;
}
.header .view-cart-header {
  padding: 1.25rem; /* 20px */
  border-bottom: 0.0625rem solid #ccc; /* 1px */
  background: #fff;
}
.header .view-cart h2 {
  margin: 0;
}
.header .cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem; /* 20px */
}
.header .cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.9375rem; /* 15px */
  border-bottom: 0.0625rem solid #ccc; /* 1px */
  padding-bottom: 0.625rem; /* 10px */
}
.header .cart-item img {
  width: 3.75rem; /* 60px */
  height: 3.75rem; /* 60px */
  object-fit: cover;
  margin-right: 0.625rem; /* 10px */
  border-radius: 0.375rem; /* 6px */
}
.header .cart-item-details {
  flex: 1; 
}
.header .cart-item-title {
  /*font-size: 0.875rem; /* 14px */*/
  font-weight: bold;
  margin-bottom: 0.25rem; /* 4px */
  display: -webkit-box;
  -webkit-line-clamp: 2;       /* Số dòng tối đa */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .cart-item-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem; /* 13px */
  margin-bottom: 0.25rem; /* 4px */
}
.header .cart-item-price {
  color: #666;
}
.header .cart-item-qty {
  color: #333;
}
.header .remove-button {
  background: none;
  border: none;
  color: red;
  font-size: 0.875rem; /* 14px */
  cursor: pointer;
  margin-left: 0.625rem; /* 10px */
}
.header .view-cart-footer {
  padding: 1.25rem; /* 20px */
  background: #fff;
}
.checkout-button,
.header .go-to-cart-button {
  display: block;
  width: 100%;
  margin-top: .5rem; /* 10px */
  cursor: pointer;
}
.header .go-to-cart-button {
  display: inline-block;
  width: 100%;
  height: 3rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--button-primary);
  color: var(--button-primary);
  border-radius: 0.5rem;
  justify-content: center;
  line-height: 0;
  border-radius: 3rem;
}
.header .go-to-cart-button a {
  color: var(--button-primary);
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .go-to-cart-button:hover {
  background: var(--button-hover);
  transition: all 0.3s ease-in-out;
}
.header .go-to-cart-button:hover a {
  color: var(--color-white);
}

/* Nút Primary */
.btn-primary-1 {
    background: linear-gradient(120deg, #007bff, #0056b3);
    border: none;
    color: #fff;
}

/* Nút Secondary */
.btn-secondary-1 {
    background: linear-gradient(120deg, #6c757d, #495057);
    border: none;
    color: #fff;
}

/* Nút Success */
.btn-success-1 {
    background: linear-gradient(120deg, #28a745, #218838);
    border: none;
    color: #fff;
}

/* Nút Danger */
.btn-danger-1 {
    background: linear-gradient(120deg, #dc3545, #c82333);
    border: none;
    color: #fff;
}

/* Nút Warning */
.btn-warning-1 {
    background: linear-gradient(120deg, #ffc107, #e0a800);
    border: none;
    color: #212529;
}

/* Nút Info */
.btn-info-1 {
    background: linear-gradient(120deg, #17a2b8, #117a8b);
    border: none;
    color: #fff;
}

/* Nút Light */
.btn-light-1 {
    background: linear-gradient(120deg, #f8f9fa, #e9ecef);
    border: none;
    color: #212529;
}

/* Nút Dark */
.btn-dark-1 {
    background: linear-gradient(120deg, #343a40, #23272b);
    border: none;
    color: #fff;
}

@media (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --max-width-container:100%; /* 375px */
  }
  html {
    font-size: 3vw;
  }
  h2 {
    font-size: var(--font-h3);
  }
  section {
    padding-top: 2rem !important;
  }
  section.slide-header, section.list_product_page, section.about_us_banner, section.contact_infor-page {
    padding-top: 1rem !important;
  }
  .bread-crumbs {
    display:none !important;
  }
  .bread-crumbs .last-breadcrumbs {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
  }
  main {
    width: 100%;
    margin-top: 2.8rem;
  }
  .col-md-12, .col-sm-12, .col-xs-12 {
    width: 100%;
  }
  .col-lg-9, .col-md-9, .col-lg-3, .col-md-3, .col-lg-4, .col-md-4, .col-lg-8, .col-md-8 {
    margin: 1rem 0rem;
  }
  .d-none-mob {
    display: none;
  }
  .container {
    padding: 0 .5rem;
  }
}