@charset "UTF-8";
/**
 * _base.scss
 * 
 * 1/ biến màu săc
 * 2/ biến kích thước font chữ
 * 3/ Cấu hình border
 * 4/ Mixin
 * 5/ Responsive
*/
.header .header-bottom {
  background: var(--fs-color-primary);
}
.header .header-bottom .header-bottom-nav.nav-center .nav-dropdown, .header .header-bottom .account-item .nav-dropdown {
  border-bottom: 3px solid var(--fs-color-primary);
  padding: 0 !important;
}
.header .header-bottom .header-bottom-nav.nav-center .nav-dropdown li.active > a, .header .header-bottom .account-item .nav-dropdown li.active > a {
  color: white !important;
  background-color: var(--fs-color-primary);
}
.header .header-bottom .header-bottom-nav.nav-center .nav-dropdown li > a, .header .header-bottom .account-item .nav-dropdown li > a {
  border-bottom: none !important;
  color: var(--fs-color-secondary) !important;
  padding: 10px;
  margin: 0;
}
.header .header-bottom .header-bottom-nav.nav-center .nav-dropdown li > a::before, .header .header-bottom .account-item .nav-dropdown li > a::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 0;
  display: inline;
  transition: all 0.3s;
}
.header .header-bottom .header-bottom-nav.nav-center .nav-dropdown li > a:hover, .header .header-bottom .account-item .nav-dropdown li > a:hover {
  color: white !important;
  background-color: var(--fs-color-primary);
}
.header .header-bottom .header-bottom-nav.nav-center .nav-dropdown li > a:hover::before, .header .header-bottom .account-item .nav-dropdown li > a:hover::before {
  font-size: 16px;
  margin-right: 10px;
}

.top-headermain .button {
  border-radius: 50px;
}
.top-headermain h1 {
  margin-bottom: 0 !important;
  line-height: 1 !important;
}

.off-canvas:not(.off-canvas-center) .nav-vertical li > .gtranslate_wrapper {
  padding-left: 20px;
}

.section-contact .icon-box {
  display: flex;
  align-items: center;
}
.section-contact .icon-box p {
  margin-bottom: 0 !important;
}
.section-contact .icon-box .icon {
  background: color-mix(in srgb, white 70%, var(--fs-color-primary) 30%);
  padding: 10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.section-contact .icon-box .icon svg {
  padding-top: 0 !important;
  fill: var(--fs-color-primary);
  color: var(--fs-color-primary);
}
.section-contact .icon-box .icon-box-text {
  padding-left: 1em !important;
}

/* Bóng 2 bên dưới ảnh slider Flatsome */
.slide-banner-home .flickity-viewport {
  overflow: visible !important;
}
.slide-banner-home .flickity-viewport .img {
  position: relative;
}
.slide-banner-home .flickity-viewport .img::before, .slide-banner-home .flickity-viewport .img::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  width: 50%;
  max-width: 400px;
  height: 40px;
  background: transparent;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.8);
  border-radius: 0;
}
.slide-banner-home .flickity-viewport .img::before {
  left: 10px;
  transform: rotate(-3deg);
}
.slide-banner-home .flickity-viewport .img::after {
  right: 10px;
  transform: rotate(3deg);
}

.row-infohome p {
  margin-bottom: 0 !important;
}
.row-infohome .col-center {
  border-width: 0 2px 0 2px !important;
  border-color: #c6c6c6 !important;
  border-style: dotted !important;
}
@media (max-width: 767px) {
  .row-infohome .col-center {
    border-width: 0 !important;
  }
}

.title-home-center {
  margin-bottom: 0 !important;
}

.product-small.box {
  border: 1px solid #e9edf3;
  border-radius: 12px;
  background: linear-gradient(145deg, color-mix(in srgb, white 90%, var(--fs-color-primary) 10%), #ffffff);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}
.product-small.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.1), 0 4px 10px rgba(16, 24, 40, 0.06);
  border-color: #dce2ea;
}
.product-small .box-image {
  position: relative;
  overflow: visible;
  padding: 10px;
}
.product-small .box-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 1;
  backface-visibility: hidden;
}
.product-small .box-image::before, .product-small .box-image::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 12px;
  width: 44%;
  max-width: 220px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
}
.product-small .box-image::before {
  left: 16px;
  transform: rotate(-3deg);
}
.product-small .box-image::after {
  right: 16px;
  transform: rotate(3deg);
}
.product-small .box-image .back-image {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.product-small .box-image:hover .back-image {
  opacity: 1;
}
.product-small .box-text {
  padding: 10px 16px 16px;
}
.product-small .box-text .name.product-title {
  margin: 6px 0 2px;
}
.product-small .box-text .name.product-title a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}
.product-small .box-text .name.product-title a:hover {
  color: #0b1324;
}

ul.products li.product .price, ul.products li.product .price ins {
  color: #d30000;
  font-weight: 800;
  letter-spacing: 0.2px;
}
ul.products li.product .price del {
  color: #8a94a6;
  margin-right: 6px;
}

.product-small .btn-add-cart {
  width: 100%;
  border-radius: 999px;
  border: 1.5px solid var(--fs-color-primary);
  color: var(--fs-color-primary);
  background: linear-gradient(145deg, color-mix(in srgb, white 90%, var(--fs-color-primary) 10%), #ffffff);
  padding: 8px 16px;
  line-height: 1.2;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 3px 3px 6px color-mix(in srgb, color-mix(in srgb, white 70%, var(--fs-color-primary) 30%) 30%, var(--fs-color-primary) 70%), -2px -2px 5px #ffffff;
  transition: all 0.25s ease;
}
.product-small .btn-add-cart i {
  font-size: 14px;
  transition: transform 0.25s ease;
}
.product-small .btn-add-cart:hover, .product-small .btn-add-cart:focus {
  background: linear-gradient(135deg, var(--fs-color-primary) 0%, color-mix(in srgb, var(--fs-color-primary) 50%, var(--fs-color-secondary) 50%) 50%, var(--fs-color-secondary) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 5px 5px 15px color-mix(in srgb, black 40%, var(--fs-color-primary) 60%), -5px -5px 15px #ffffff !important;
}
.product-small .btn-add-cart:hover i, .product-small .btn-add-cart:focus i {
  transform: translateX(4px);
}
.product-small .btn-add-cart:active {
  transform: scale(0.98);
  box-shadow: 5px 5px 15px color-mix(in srgb, black 40%, var(--fs-color-primary) 60%), -5px -5px 15px #ffffff !important;
}

@media (max-width: 550px) {
  .product-small.box {
    border-radius: 10px;
  }
  .product-small .box-image {
    padding: 8px;
  }
  .product-small .box-image::before,
  .product-small .box-image::after {
    bottom: 10px;
    width: 42%;
    max-width: 160px;
    height: 12px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  }
}
.price-wrapper .woocommerce-Price-amount {
  color: red !important;
}

.single-product .price-wrapper .woocommerce-Price-amount {
  color: red !important;
}

.footer-wrapper {
  z-index: 0;
}

.absolute-footer {
  background-color: black !important;
}

.section_footer {
  box-shadow: color-mix(in srgb, var(--fs-color-primary) 30%, black 70%) !important;
  background-color: var(--fs-color-primary) !important;
}
.section_footer .text-copyright p {
  margin-bottom: 0 !important;
}
.section_footer .ux-menu .ux-menu-link__link {
  position: relative;
  display: flex;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom-style: unset !important;
}
.section_footer .ux-menu .ux-menu-link__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--fs-color-primary);
  transition: width 0.5s ease;
}
.section_footer .ux-menu .ux-menu-link__link:hover {
  color: var(--fs-color-secondary) !important;
  font-weight: bold;
}
.section_footer .ux-menu .ux-menu-link__link:hover::before {
  width: 100%;
}
.section_footer .ux-menu.link-menu .ux-menu-link__link .ux-menu-link__icon::before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(315deg);
  margin-left: 0.1em;
  margin-bottom: 1px;
}
.section_footer .ux-menu.link-menu .ux-menu-link__link:hover .ux-menu-link__icon::before {
  transform: rotate(360deg);
}
.section_footer .icon-call .icon-inner svg {
  fill: var(--fs-color-primary);
  color: var(--fs-color-primary);
  animation: ringPhone 1.5s infinite;
  display: inline-block;
  font-size: 1.4em;
}
.section_footer img {
  border-radius: 7px;
}

@keyframes ringPhone {
  0% {
    transform: scale(1) rotate(0deg);
  }
  20% {
    transform: scale(1.2) rotate(15deg);
  }
  40% {
    transform: scale(1.3) rotate(-10deg);
  }
  60% {
    transform: scale(1.2) rotate(5deg);
  }
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.social-icons.follow-icons.full-width.text-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* khoảng cách giữa icon */
}

.social-icons.follow-icons.full-width.text-center::before,
.social-icons.follow-icons.full-width.text-center::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #000; /* màu đường kẻ */
  opacity: 0.4;
  margin: 0 10px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  line-height: 50px !important;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px !important;
  margin-right: 10px !important;
  box-shadow: 5px 5px 15px color-mix(in srgb, black 40%, var(--fs-color-primary) 60%), -5px -5px 15px #ffffff;
  background: linear-gradient(145deg, color-mix(in srgb, white 90%, var(--fs-color-primary) 10%), #ffffff);
  border: unset !important;
}
.social-icons a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--fs-color-primary) 0%, color-mix(in srgb, var(--fs-color-primary) 50%, var(--fs-color-secondary) 50%) 50%, var(--fs-color-secondary) 100%);
}
.social-icons a:hover i::before {
  color: white !important;
}
.social-icons a i::before {
  color: black !important;
}