@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --normal-font: "Poppins", sans-serif;
  --normal-color: #000000;
  --primary-color: #231f20;
  --second-color: #ff5b00;
  --three-color: #373737;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
svg,
video {
  max-width: 100%;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--normal-font);
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  color: var(--normal-color);
}

.ov-hidden {
  overflow: hidden;
}

.container {
  max-width: 1360px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

a {
  color: var(--normal-color);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  color: var(--normal-color);
}

p:last-child {
  margin-bottom: 0;
}

button {
  border-color: transparent;
  outline: 0;
}

.row-collapse {
  margin-left: 0;
  margin-right: 0;
}
.row-collapse > div[class~=col], .row-collapse > div[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-small {
  margin-left: -10px;
  margin-right: -10px;
}
.row-small > div[class~=col], .row-small > div[class^=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.tb-space {
  padding: 70px 0;
}

.tb-space-sm {
  padding: 40px 0;
}

.tb-space-top {
  padding-top: 70px;
}

.tb-space-bottom {
  padding-bottom: 70px;
}

@media (max-width: 767.98px) {
  .tb-space {
    padding: 40px 0;
  }

  .tb-space-top {
    padding-top: 40px;
  }

  .tb-space-bottom {
    padding-bottom: 40px;
  }
}
.bg-size {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 0;
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 1;
}
.slick-arrow::before {
  display: none;
}
.slick-arrow:hover {
  color: #fff;
  border-color: transparent;
  background-color: var(--primary-color);
}

.slick-prev {
  left: 2%;
}

.slick-next {
  right: 2%;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
}
.slick-dots li.slick-active button::before {
  opacity: 1;
  color: #fff;
}

.heading-title {
  margin-bottom: 30px;
}
.heading-title .sectitle {
  text-transform: uppercase;
  text-align: center;
  color: var(--three-color);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  position: relative;
}
.heading-title .sectitle::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--second-color);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.heading-title .subtitle {
  text-align: center;
}

.heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.heading-row .sectitle {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--three-color);
  margin-bottom: 0;
  text-align: left;
  text-transform: none;
}
.heading-row .sectitle::after {
  display: none;
}
.heading-row .btn-wrapmore {
  color: var(--primary-color);
}

.btn {
  font-size: 1.6rem;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 0.8;
}

.btn-second {
  background-color: var(--second-color);
  border-color: var(--second-color);
}

.btn-white {
  background-color: #fff;
  color: #666;
}

.box-image {
  position: relative;
  overflow: hidden;
}
.box-image img {
  transition: filter 0.6s, opacity 0.6s, transform 0.6s, box-shadow 0.3s;
}

.image-cover,
.video-fit {
  position: relative;
  padding-top: 75%;
  height: auto;
  display: block;
  background-position: 50% 50%;
  background-size: cover;
}
.image-cover img,
.image-cover iframe,
.image-cover video,
.video-fit img,
.video-fit iframe,
.video-fit video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 1em 0 1em;
  width: 100%;
  max-width: 30px;
}

.form-control {
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ddd;
  font-size: 1.6rem;
  width: 100%;
  vertical-align: middle;
  background-color: #fff;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: color 0.3s, border 0.3s, background 0.3s, opacity 0.3s;
}
.form-control:focus {
  box-shadow: 0 0 5px #ccc;
  opacity: 1 !important;
  outline: 0;
  color: #333;
  background-color: #fff;
}

textarea.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 991.98px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .show-lg {
    display: none !important;
  }
}

.header {
  background-color: #231f20;
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.header .logo img {
  height: 70px;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-contact .cart-wrap {
  color: #fff;
}
.header-contact .cart-wrap a {
  position: relative;
  display: inline-block;
  color: inherit;
}
.header-contact .cart-wrap a .num {
  position: absolute;
  bottom: 100%;
  right: -15px;
  font-size: 12px;
  color: #fff;
  padding: 2px 3px;
  line-height: 12px;
  background-color: #C7A97F;
  border-radius: 4px;
}

.customer-form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.customer-form-wrap .form-group > label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.required {
  color: red;
}

.product-filter-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.product-filter-title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--second-color);
}
.product-filter-box:not(:last-child) {
  margin-bottom: 15px;
}
.product-filter-search-form {
  display: flex;
}
.product-filter-search-form input {
  flex: 1 1 auto;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.product-filter-search-form button {
  padding: 8px 12px;
  border: 1px solid var(--second-color);
  background-color: var(--second-color);
  color: #fff;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  cursor: pointer;
  height: 38px;
}
.product-filter-search-form button:hover {
  background-color: #b3926c;
  border-color: #b3926c;
}
.product-filter .filter-group-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-filter .filter-group-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-filter .filter-group-list li {
  margin-bottom: 8px;
}
.product-filter .filter-group-list li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.product-filter .filter-group-list li a:hover {
  color: var(--second-color);
}
.product-filter .filter-group .form-check {
  padding-left: 20px;
}
.product-filter .filter-group .form-check-input {
  top: 4px;
  left: 0;
  margin: 0;
  width: 15px;
  height: 15px;
}
.product-filter .filter-group .form-check-label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.product-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.product-tools .product-sorting select {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.product-item {
  margin-bottom: 20px;
}
.product-item-inner {
  border: 1px solid #e1e1e1;
  text-align: center;
  transition: box-shadow 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}
.product-item-inner:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-item-inner .product-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  object-fit: fill;
}
.product-item-inner .product-info {
  padding: 15px;
}
.product-item-inner .product-title {
  font-size: 16px;
}
.product-item-inner .product-price {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--second-color);
}
.product-item-inner .product-action .btn-addcart {
  padding: 10px 25px;
  font-size: 14px;
  background-color: #231f20;
  border-color: #231f20;
}

.staff-log {
  color: #fff;
}
.staff-log a {
  color: inherit;
}

.cart-item {
  margin-bottom: 20px;
}
.cart-item .qty-btn {
  background-color: var(--second-color);
  border: 1px solid var(--second-color);
  color: #fff;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
}
.cart-item .quantity {
  display: inline-block;
  width: 40px;
  text-align: center;
}
.cart-item .btn-remove {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #666;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
}
.cart .cart-total {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

.pos-order-section .product-item .card-img-top {
  aspect-ratio: 6/4;
  object-fit: fill;
}
.pos-order-section .filter-box .btn-categories {
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
  cursor: pointer;
}
.pos-order-section .filter-box .btn-categories:hover, .pos-order-section .filter-box .btn-categories.active {
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #fff;
}
.pos-order-section .quantity-control {
  gap: 6px;
}
.pos-order-section .quantity-control .qty-btn {
  width: 28px;
  height: 28px;
  background-color: var(--second-color);
  color: #fff;
}
.pos-order-section .quantity-control .cart-item-qty {
  height: 30px;
  font-size: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.backtotop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  display: none;
}
.backtotop span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #DCFCE7;
  padding: 8px;
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 1.8rem;
  cursor: pointer;
}
.backtotop.show {
  display: block;
}

.social-icons {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.85em;
  color: #999;
}
.social-icons .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: inherit;
}
.social-icons .icon:hover {
  opacity: 0.8;
}
.social-icons .icon-facebook {
  background-color: #3a589d;
}
.social-icons .icon-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons .icon-twitter {
  background-color: #1da1f2;
}
.social-icons .icon-envelop {
  background-color: #dd4b39;
}
.social-icons .icon-phone {
  background-color: #34af23;
}
.social-icons .icon-pinterest {
  background-color: #bd081c;
}
.social-icons .icon-linkedin {
  background-color: #0077b5;
}
.social-icons .icon-youtube {
  background-color: #ff0000;
}

.fixed-contact {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
}
.fixed-contact .box-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 3.2rem;
  background-color: #51cb5a;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/*# sourceMappingURL=style.css.map */
