@charset "UTF-8";
/* Header Styles */
/* ===== Menu chính ===== */
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0; }

/* Khoảng cách giữa các menu item */
.navbar-nav .nav-item {
  margin-left: 10px;
  display: flex;
  align-items: center;
  position: relative;
  /* để dropdown absolute đúng */ }

/* Vị trí dropdown */
.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  /* ngay sát menu item */
  left: 0;
  margin-top: 5px;
  /* khoảng trắng nhìn thấy */
  padding-top: 5px;
  /* vùng hover bên trong dropdown */
  z-index: 1000;
  display: none;
  /* mặc định ẩn dropdown */ }

/* Dropdown khi hover menu cha hoặc menu con hoặc khi click */
.navbar-nav .nav-item.dropdown:hover > .dropdown-menu,
.navbar-nav .nav-item.dropdown .dropdown-menu:hover,
.navbar-nav .nav-item.dropdown.show > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  min-width: max-content; }

/* Link trong dropdown */
/* Thêm border cho tất cả dropdown-item trong menu */
.navbar-nav .menu-item .dropdown-item {
  border-bottom: 1px solid #bcc0c4 !important;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  white-space: normal;
  /* wrap xuống dòng */ }

/* Bỏ border cho item cuối cùng trong dropdown */
.navbar-nav .menu-item:last-child .dropdown-item {
  border-bottom: none !important; }

/* Hover link dropdown */
.navbar-nav .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #000; }

/* ===== Mũi tên dropdown ===== */
.navbar-nav .dropdown-toggle::after {
  display: inline-block;
  margin-left: .5em;
  vertical-align: 0.255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
  transition: transform 0.3s ease; }

/* Mũi tên chỉ xoay khi hover hoặc click */
.navbar-nav .nav-item.dropdown:hover > .nav-link::after,
.navbar-nav .nav-item.dropdown.show > .nav-link::after {
  transform: rotate(180deg); }

/* Giữ dropdown luôn hover khi di chuột qua */
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block; }

/* Vùng hover giả cho khoảng trắng margin-top */
.navbar-nav .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 5px;
  /* bằng margin-top */
  pointer-events: auto; }

/* Dropdown container */
.navbar-nav .dropdown {
  position: relative; }

/* ===== Menu active ===== */
.navbar-nav .nav-link.active,
.navbar-nav .current-menu-item > .nav-link {
  color: #EDAC43;
  /* màu vàng */
  border-bottom: 2px solid #EDAC43;
  /* gạch chân */ }

.header-section {
  background: white;
  box-shadow: var(--shadow-sm);
  z-index: 1000; }

.logo-placeholder {
  width: 135px;
  height: 40px;
  font-size: 14px; }

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  padding: 0rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block; }

.navbar-nav .nav-item {
  margin-right: 20px;
  /* khoảng cách bên phải */ }

.active-indicator {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--secondary-color); }

.navbar-nav .nav-link:hover {
  color: #198754;
  /* đổi màu chữ khi hover */ }

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* nằm sát dưới chữ */
  width: 0;
  height: 2px;
  background-color: #edac43;
  /* màu gạch chân */
  border-radius: 2px;
  transition: width 0.3s ease-in-out; }

.navbar-nav .nav-link.active::after {
  width: 100%;
  /* giữ nguyên khi active */ }

/* Ô tìm kiếm trong header: nền xám nhạt, bo góc lớn, bố cục linh hoạt */
.search-box {
  background: #f5f7fa;
  border-radius: 16px;
  padding: 4px 8px;
  border: 0;
  height: 40px; }

/* Nút kính lúp màu vàng, kích thước vuông 44px, icon trắng */
.search-btn {
  background: var(--secondary-color);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  transition: background 0.3s ease; }

.search-btn {
  /* màu vàng theo thiết kế */
  background: #f7b500 !important; }

/* Input bên trong ô tìm kiếm: trong suốt, không viền, chữ vừa phải */
.search-box .form-control {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding-left: 10px;
  font-size: 18px;
  color: #3b4452;
  /* màu chữ tối vừa */
  height: 100%; }

/* Placeholder màu xám xanh, rõ ràng */
.search-box .form-control::placeholder {
  color: #6b778c;
  opacity: 1; }

/* Tăng kích thước icon kính lúp để nổi bật */
.search-btn .bi-search {
  font-size: 22px; }

.cart-btn {
  background: #f1f4f9;
  border: none;
  width: 40px;
  height: 40px;
  color: var(--text-dark);
  transition: background 0.3s ease; }

.cart-btn:hover {
  background: #e2e8f0 !important; }

/* Header Scroll Effect */
.header-scroll-effect {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px); }

/* Style cho badge số lượng giỏ hàng */
.cart-icon-wrapper {
  position: relative;
  display: inline-block; }

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal !important; }

/* Ẩn thông báo "View cart" sau khi thêm vào giỏ */
.woocommerce-message {
  display: none !important; }

.wc-forward {
  display: none !important; }

/* Responsive Header */
@media (max-width: 768px) {
  .fixed-top-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }

  .search-box {
    width: 100% !important;
    /* full chiều ngang trên mobile */ }

  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important; } }
@media (max-width: 576px) {
  .search-box {
    width: 100% !important; } }
.header-section .container-fluid {
  padding-left: 1rem !important;
  padding-right: 1rem !important; }

@media (min-width: 1400px) {
  .header-section .container-fluid {
    padding-left: 0rem !important;
    padding-right: 0rem !important; } }
.fw-regular {
  font-weight: 400 !important; }

/* Footer Styles */
.footer-section {
  border-radius: 40px 40px 0 0;
  margin-top: -1rem;
  padding: 3rem 0 0; }

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'SVN-Megante-Regular', Helvetica; }

.footer-links a {
  color: var(--text-dark);
  font-size: 1rem;
  transition: color 0.3s ease; }

/* Đồng nhất khoảng cách các item kể cả khi text xuống dòng */
.footer-section .col-lg-3,
.footer-section .col-md-6 {
  display: flex;
  flex-direction: column; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* khoảng cách đồng nhất giữa các hàng */
  margin: 0;
  padding: 0; }

.footer-links li {
  margin: 0;
  /* dùng gap thay vì margin để ổn định khi wrap */
  list-style: none; }

.footer-links a {
  line-height: 1.6;
  /* đảm bảo chiều cao dòng ổn định */
  display: inline-block; }

.footer-links a:hover {
  color: var(--primary-color) !important; }

.contact-info .contact-item i {
  color: var(--text-dark);
  font-size: 20px !important; }

.contact-info .contact-item span {
  font-size: 1rem;
  color: #27364b;
  line-height: 1.5; }

/* Đồng nhất khoảng cách giữa các dòng liên hệ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* khoảng cách đồng nhất giữa các contact-item */ }

.contact-info .contact-item {
  align-items: flex-start;
  gap: 10px; }

.footer-bottom {
  background-color: #225A41;
  display: block !important; }

.footer-bg-left {
  position: absolute;
  top: 30px;
  left: -200px;
  width: 300px;
  height: 326px;
  transform: rotate(0deg);
  object-fit: cover; }

.footer-bg-right {
  position: absolute;
  object-fit: cover;
  top: 200px;
  right: -95px;
  width: 250px;
  height: 268px;
  transform: rotate(-56deg); }

.list-unstyled {
  color: #27364b; }

.contact-item a {
  color: #27364b;
  text-decoration: none; }

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 1rem 0 0; }

  .footer-title {
    font-size: 1.125rem; }

  .contact-info .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem; }

  .contact-info .contact-item i {
    font-size: 1.25rem; } }
@media (max-width: 576px) {
  .footer-section .container {
    padding-left: 1rem;
    padding-right: 1rem; }

  .footer-bottom {
    padding: 1rem 0; }

  .footer-bottom p {
    font-size: 0.875rem; } }
/* Main Content Styles */
/* Hero Section */
.hero-section {
  height: 600px; }

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "SVN-Megante-Regular", Helvetica; }

.hero-description {
  font-size: 1.5rem;
  max-width: 545px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); }

/* Product Cards */
.title-underline::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #ecd08f;
  /* xanh Bootstrap success */
  margin-top: 8px;
  border-radius: 2px; }

.title-underline-contact::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background-color: #ecd08f;
  /* xanh Bootstrap success */
  /* xanh Bootstrap success */
  margin-top: 8px;
  border-radius: 2px; }

.title-underline-contact {
  display: flex;
  flex-direction: column;
  align-items: center; }

.product-card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important; }

.product-image img {
  width: 100%;
  height: 303px;
  background: linear-gradient(0deg, white 0%, white 100%);
  border-bottom: 1px solid #e2e8f0; }

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: "SVN-Megante-Regular", Helvetica; }

.product-description {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5; }

.product-price {
  font-size: 1rem;
  color: #edac43; }

/* Carousel Controls */
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm); }

.carousel-indicators {
  position: static;
  /* bỏ absolute */
  margin-top: 1.5rem;
  /* tạo khoảng cách với sản phẩm */ }

.carousel-indicators {
  gap: 5px; }

.indicator {
  width: 48px;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.3s ease; }

.carousel-indicators .indicator.active {
  background-color: #225a41;
  /* xanh Bootstrap success */ }

.indicator:hover {
  background: #225a41 !important; }

/* About Section */
.about-section {
  background: #225a41; }

.background-overlay {
  z-index: 0; }

.background-overlay img {
  object-fit: cover;
  /* Đảm bảo ảnh phủ kín */ }

/* Đảm bảo nội dung hiển thị trên cùng */
.container.position-relative {
  z-index: 1; }

/* Giữ các decorative images trên cùng */
.about-bg-left,
.about-bg-right {
  z-index: 2; }

.about-description {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.6; }

.feature-icon {
  width: 72px;
  height: 72px;
  background: #f6f8fc;
  border-radius: 50%; }

.feature-icon img {
  width: 45px;
  height: 45px; }

.feature-title {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "SVN-Megante-Regular", Helvetica; }

.about-quote {
  max-width: 589px;
  font-size: 18px;
  line-height: 1.6; }

.about-bg-left {
  top: 300px;
  left: -100px;
  width: 357px;
  height: 392px; }

.about-bg-right {
  top: -96px;
  right: -120;
  width: 357px;
  height: 392px;
  transform: rotate(-165deg); }

.about-section .about-description,
.about-section .about-quote {
  text-align: center !important;
  /* căn giữa chữ */
  max-width: 760px;
  /* giới hạn width để xuống hàng hài hoà */
  margin: 0 auto;
  /* canh giữa khung p */ }

/* News Cards */
.btn-outline-success:hover {
  color: #225a41 !important;
  /* Giữ chữ xanh */
  background-color: transparent !important;
  /* Không đổi nền */
  border-color: #225a41 !important;
  /* Giữ viền xanh */ }

.btn-outline-success {
  color: #225a41 !important;
  /* Giữ chữ xanh */
  border-color: #225a41 !important;
  /* Giữ viền xanh */ }

.news-card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 400px; }

.btn-outline-success:hover {
  background-color: #e1efe1 !important;
  /* Đổi chữ trắng khi hover */
  color: #225a41 !important;
  /* Giữ chữ xanh */ }

.view-more-link {
  text-decoration: none !important;
  /* Bỏ gạch chân link */
  color: #edac43 !important;
  /* Màu chữ link */ }

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important; }

.news-image {
  width: 100%;
  max-width: 100%;
  height: 250px;
  overflow: hidden;
  object-fit: cover;
  background: linear-gradient(0deg, white 0%, white 100%);
  border-bottom: 1px solid #e2e8f0; }

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: "SVN-Megante-Regular", Helvetica; }

.news-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5; }

.news-date {
  color: var(--text-light);
  font-size: 0.875rem; }

.news-link {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  color: #d49a3a !important; }

/* Consultation Section */
.consultation-banner .text-center {
  position: relative;
  top: -100px; }

.consultation-banner {
  height: 400px;
  background-size: cover;
  background-position: center; }

.consultation-subtitle {
  font-size: 1.25rem;
  max-width: 608px; }

.consultation-form-wrapper {
  margin-top: -245px;
  position: relative;
  z-index: 3; }

.consultation-form {
  max-width: 794px;
  margin: 0 auto;
  border-radius: 8px; }

.consultation-form .form-control {
  background: var(--bg-light);
  border: 0.5px solid #cbd4e1;
  border-radius: 6px;
  padding: 0.75rem; }

.consultation-form textarea {
  min-height: 245px;
  resize: vertical; }

/* Cho container có thể scroll ngang và chuyển động mượt */
#bestsellerCarousel {
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  /* cho phép scroll */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  transition: none;
  /* ta điều khiển bằng scrollTo */ }

/* 4 item trên 1 hàng */
#bestsellerCarousel .product-item {
  flex: 0 0 25%;
  box-sizing: border-box; }

/* ẩn thanh cuộn nếu muốn */
#bestsellerCarousel::-webkit-scrollbar {
  display: none; }

#bestsellerCarousel {
  -ms-overflow-style: none;
  scrollbar-width: none; }

/* indicator style */
#bestsellerIndicators .indicator {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #e6e9ec;
  transition: background-color .25s;
  cursor: pointer; }

#bestsellerIndicators .indicator.active {
  background: #225A41; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important; }

  .hero-description {
    font-size: 1.25rem !important; }

  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem; }

  .products-carousel .d-flex {
    gap: 1rem; }

  .carousel-btn {
    align-self: center; }

  .features-row .row {
    gap: 2rem; }

  .consultation-form-wrapper {
    margin-top: -100px !important; }

  .consultation-banner {
    height: 250px !important; } }
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important; }

  .hero-description {
    font-size: 1rem !important; }

  .product-actions {
    flex-direction: column; }

  .news-card {
    height: auto !important; }

  .consultation-form .row {
    flex-direction: column; } }
.sn-phm {
  background-color: #ffffff;
  width: 100%;
  min-width: 1440px;
  height: auto;
  min-height: 900px;
  position: relative; }

.sn-phm .layer {
  position: relative;
  width: 135px; }

.sn-phm .div {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #27364b;
  font-size: var(--body-14-14-medium-font-size);
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .text-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: #edac43; }

.sn-phm .text-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #27364b;
  font-size: var(--body-14-14-medium-font-size);
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .frame {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .frame-2 {
  display: flex;
  width: 318px;
  height: 40px;
  align-items: center;
  gap: 12px;
  padding: 0px 8px 0px 4px;
  position: relative;
  background-color: #f6f8fc;
  border-radius: 4px; }

.sn-phm .search-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  background-color: #edac43;
  border-radius: 4px; }

.sn-phm .img {
  position: relative;
  width: 24px;
  height: 24px; }

.sn-phm .p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #64748b;
  font-size: var(--body-14-14-medium-font-size);
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .frame-3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f1f4f9;
  border-radius: 4px; }

.sn-phm .div-wrapper {
  display: flex;
  flex-direction: column;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: -6px;
  right: -5px;
  background-color: #d83232;
  border-radius: 1000px; }

.sn-phm .text-wrapper-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: 8px;
  font-family: "Lexend", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 8px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap; }

.sn-phm .footer {
  display: flex;
  flex-direction: column;
  width: 1440px;
  align-items: center;
  gap: 56px;
  padding: 32px 0px 0px;
  position: absolute;
  left: calc(50% - 720px);
  bottom: 0;
  background-color: #ffffff;
  border-radius: 40px 40px 0px 0px;
  overflow: hidden;
  box-shadow: var(--dropshadow-small); }

.sn-phm .frame-4 {
  display: flex;
  width: 1440px;
  align-items: flex-start;
  justify-content: center;
  gap: 130px;
  padding: 0px 120px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content-2 {
  display: flex;
  flex-direction: column;
  width: 200px;
  align-items: flex-start;
  gap: 28px;
  position: relative; }

.sn-phm .text-3 {
  align-self: stretch;
  margin-top: -1px;
  font-family: "SVN-Megante-Regular", Helvetica;
  font-weight: 400;
  color: #27364b;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  letter-spacing: 0; }

.sn-phm .content-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .text-4 {
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  line-height: var(--body-16-16-regular-line-height);
  position: relative;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .text-5 {
  align-self: stretch;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  line-height: var(--body-16-16-regular-line-height);
  position: relative;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .content-4 {
  display: flex;
  flex-direction: column;
  width: 322px;
  align-items: flex-start;
  gap: 28px;
  position: relative; }

.sn-phm .div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .frame-5 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .text-6 {
  flex: 1;
  margin-top: -1px;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  line-height: var(--body-16-16-regular-line-height);
  position: relative;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .frame-6 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .text-7 {
  width: fit-content;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  line-height: var(--body-16-16-regular-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .frame-7 {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

/* Đảm bảo 2 nút có cùng kích thước */
.frame-7 {
  display: flex;
  gap: 12px;
  width: 100%; }
  .frame-7 .btn-quickorder,
  .frame-7 .button-3 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s; }
    .frame-7 .btn-quickorder:hover,
    .frame-7 .button-3:hover {
      opacity: 0.9;
      transform: translateY(-1px); }
  .frame-7 .btn-quickorder {
    color: white;
    border: none; }
  .frame-7 .button-3 {
    background: white; }
    .frame-7 .button-3 .text-9 {
      color: #1a5632; }

.sn-phm .frame-8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #225a41 0%, #144c31 100%); }

.sn-phm .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -0.5px;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #ffffff;
  font-size: var(--body-16-16-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  line-height: var(--body-16-16-regular-line-height);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #ffffff;
  font-size: var(--body-16-16-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  line-height: var(--body-16-16-regular-line-height);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .object {
  position: absolute;
  top: 0;
  left: 0;
  width: 91px;
  height: 326px;
  object-fit: cover; }

.sn-phm .object-2 {
  position: absolute;
  top: 96px;
  right: -185px;
  width: 215px;
  height: 268px;
  object-fit: cover; }

.sn-phm .breadcrumb {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 40px; }

.sn-phm .text-wrapper-6 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #64748b;
  font-size: var(--body-16-16-regular-font-size);
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  line-height: var(--body-16-16-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .components-separator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0px 8px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .frame-10 {
  display: flex;
  flex-direction: column;
  width: 895px;
  align-items: flex-start;
  gap: 12px;
  position: absolute;
  top: 100px; }

.sn-phm .frame-11 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-14-14-regular-font-family);
  font-weight: var(--body-14-14-regular-font-weight);
  color: #27364b;
  font-size: var(--body-14-14-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-14-14-regular-letter-spacing);
  line-height: var(--body-14-14-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-14-14-regular-font-style); }

.sn-phm .frame-12 {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  height: 36px;
  gap: 10px;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid;
  border-color: #64748b;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  position: relative;
  box-shadow: 0px 4px 24px #00000014; }

.sn-phm .text-8 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -5px;
  margin-bottom: -3px;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #475569;
  font-size: var(--body-14-14-medium-font-size);
  text-align: center;
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .ep-arrow-up {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: -6px;
  margin-bottom: -6px; }

.sn-phm .frame-13 {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 4px 2px 8px;
  background-color: #225a41;
  border-radius: 4px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .text-wrapper-9 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-14-14-regular-font-family);
  font-weight: var(--body-14-14-regular-font-weight);
  color: #ffffff;
  font-size: var(--body-14-14-regular-font-size);
  letter-spacing: var(--body-14-14-regular-letter-spacing);
  line-height: var(--body-14-14-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-14-14-regular-font-style); }

.sn-phm .button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  height: 24px;
  gap: 10px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  position: relative;
  box-shadow: 0px 4px 24px #00000014; }

.sn-phm .span-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -11px;
  margin-bottom: -9px;
  font-family: "SVN-Gilroy-Medium", Helvetica;
  font-weight: 400;
  color: #edac43;
  font-size: 14px;
  text-align: center;
  line-height: 14px;
  position: relative;
  letter-spacing: 0; }

.sn-phm .span {
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  font-style: var(--body-14-14-medium-font-style);
  line-height: var(--body-14-14-medium-line-height);
  text-decoration: underline;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  font-size: var(--body-14-14-medium-font-size); }

.sn-phm .frame-14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .frame-15 {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .frame-16 {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--dropshadow-small);
  object-fit: cover; }

.sn-phm .frame-17 {
  position: relative;
  width: 100%;
  height: 285px;
  background: linear-gradient(0deg, white 0%, white 100%); }

.sn-phm .tag-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 4px 2px 8px;
  position: relative;
  top: 8px;
  left: 8px;
  background-color: #b02d15;
  border-radius: 4px; }

.sn-phm .cao-d-c-li-u {
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #ffffff;
  font-size: var(--body-14-14-medium-font-size);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .frame-18 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  padding: 10px 15px; }

.sn-phm .frame-19 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .text-wrapper-10 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: -1px;
  font-family: "SVN-Megante-Regular", Helvetica;
  font-weight: 400;
  color: #27364b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal; }

.sn-phm .text-wrapper-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  font-family: var(--body-14-14-regular-font-family);
  font-weight: var(--body-14-14-regular-font-weight);
  color: #64748b;
  font-size: var(--body-14-14-regular-font-size);
  letter-spacing: var(--body-14-14-regular-letter-spacing);
  line-height: var(--body-14-14-regular-line-height);
  font-style: var(--body-14-14-regular-font-style); }

.sn-phm .text-wrapper-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-16-16-semi-bold-font-family);
  font-weight: var(--body-16-16-semi-bold-font-weight);
  color: #edac43;
  font-size: var(--body-16-16-semi-bold-font-size);
  letter-spacing: var(--body-16-16-semi-bold-letter-spacing);
  line-height: var(--body-16-16-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--body-16-16-semi-bold-font-style); }

.sn-phm .element-VN {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "SVN-Gilroy-Regular", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 14px; }

.sn-phm .text-wrapper-13 {
  font-family: var(--body-14-14-regular-font-family);
  font-style: var(--body-14-14-regular-font-style);
  color: #64748b;
  line-height: var(--body-14-14-regular-line-height);
  text-decoration: line-through;
  font-weight: var(--body-14-14-regular-font-weight);
  letter-spacing: var(--body-14-14-regular-letter-spacing);
  font-size: var(--body-14-14-regular-font-size); }

.sn-phm .button-3 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 4px;
  box-shadow: 0px 4px 24px #00000014;
  cursor: pointer;
  transition: background-color 0.2s; }

.sn-phm .button-3:active {
  background-color: #1a4731; }

.sn-phm .text-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #ffffff;
  font-size: var(--body-14-14-medium-font-size);
  text-align: center;
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  font-style: var(--body-14-14-medium-font-style); }

.btn-custom-green {
  background-color: #225A41;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  flex: 1;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.25s ease;
  /* chỉ scale nút, không ảnh hưởng layout */
  cursor: pointer;
  box-sizing: border-box;
  /* đảm bảo padding không làm vượt */ }

/* Hover: sáng hơn một chút */
.btn-custom-green:hover {
  background-color: #1a4533;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(34, 90, 65, 0.3); }

/* Focus (khi tab) */
.btn-custom-green:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 90, 65, 0.3); }

/* Kích thước chữ nhỏ */
.text-10 {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400; }

.sn-phm .cao-d-c-li-u-th-o-m {
  position: relative;
  align-self: stretch;
  height: 48px;
  margin-top: -1px;
  font-family: "SVN-Megante-Regular", Helvetica;
  font-weight: 400;
  color: #27364b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.sn-phm .text-wrapper-14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-16-16-semi-bold-font-family);
  font-weight: var(--body-16-16-semi-bold-font-weight);
  color: #edac43;
  font-size: var(--body-16-16-semi-bold-font-size);
  letter-spacing: var(--body-16-16-semi-bold-letter-spacing);
  line-height: var(--body-16-16-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--body-16-16-semi-bold-font-style); }

.sn-phm .content-5 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  top: 2276px;
  left: 777px; }

.sn-phm .img-wrapper {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: #ffffff;
  border-radius: 2px;
  border: 0.5px solid;
  border-color: #cbd4e1; }

.sn-phm .img-2 {
  position: relative;
  width: 16px;
  height: 16px; }

.sn-phm .content-6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px; }

.sn-phm .number {
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: #225a41;
  border-radius: 2px; }

.sn-phm .text-wrapper-15 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #ffffff;
  font-size: var(--body-14-14-medium-font-size);
  text-align: center;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  line-height: var(--body-14-14-medium-line-height);
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .element-wrapper {
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: #ffffff;
  border-radius: 2px;
  border: 0.5px solid;
  border-color: #cbd4e1; }

.sn-phm .element {
  position: relative;
  align-self: stretch;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #64748b;
  font-size: var(--body-14-14-medium-font-size);
  text-align: center;
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  line-height: var(--body-14-14-medium-line-height);
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .b-lc {
  display: flex;
  flex-direction: column;
  width: 285px;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  position: absolute;
  top: 100px;
  left: 120px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* đổ bóng */ }

.sn-phm .text-wrapper-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: -1px;
  font-family: "SVN-Megante-Regular", Helvetica;
  font-weight: 400;
  color: #27364b;
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal; }

.sn-phm .frame-20 {
  position: relative;
  width: 150px;
  height: 4px;
  background-color: #ecd08f; }

.sn-phm .frame-21 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .frame-22 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content-7 {
  display: flex;
  width: 253px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 0px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .text-wrapper-17 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-16-16-semi-bold-font-family);
  font-weight: var(--body-16-16-semi-bold-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-semi-bold-font-size);
  letter-spacing: var(--body-16-16-semi-bold-letter-spacing);
  line-height: var(--body-16-16-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--body-16-16-semi-bold-font-style); }

.sn-phm .content-wrapper {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 20px; }

.sn-phm .content-8 {
  position: relative;
  top: calc(50% - 3px);
  width: 253px;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 2px; }

.sn-phm .rectangle {
  top: -4px;
  left: 28px;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  transform: rotate(-45deg);
  position: absolute;
  background-color: #225a41;
  cursor: pointer;
  z-index: 2; }

.sn-phm .rectangle-2 {
  top: -4px;
  left: 188px;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  transform: rotate(-45deg);
  position: absolute;
  background-color: #225a41;
  cursor: pointer;
  z-index: 2; }

.sn-phm .rectangle-3 {
  top: 0;
  left: 35px;
  width: 162px;
  height: 6px;
  position: absolute;
  background-color: #225a41;
  pointer-events: none; }

.sn-phm .frame-23 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #f6f8fc;
  border-radius: 4px;
  border: 0.5px solid;
  border-color: #cbd4e1; }

.sn-phm .text-wrapper-18 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -0.5px;
  font-family: var(--body-14-14-medium-font-family);
  font-weight: var(--body-14-14-medium-font-weight);
  color: #64748b;
  font-size: var(--body-14-14-medium-font-size);
  letter-spacing: var(--body-14-14-medium-letter-spacing);
  line-height: var(--body-14-14-medium-line-height);
  white-space: nowrap;
  font-style: var(--body-14-14-medium-font-style); }

.sn-phm .frame-24 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content-9 {
  display: flex;
  width: 253px;
  align-items: center;
  gap: 8px;
  padding: 8px 0px 8px 12px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer; }

.sn-phm .checkbox-input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #225a41; }

.sn-phm .content-9 label {
  cursor: pointer;
  flex: 1; }

.sn-phm .button-5 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  height: 44px;
  gap: 10px;
  flex: 1;
  flex-grow: 1;
  border: 1px solid;
  border-color: #225a41;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  position: relative;
  box-shadow: 0px 4px 24px #00000014; }

.sn-phm .button-6 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  height: 44px;
  gap: 10px;
  flex: 1;
  flex-grow: 1;
  background-color: #edac43;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  position: relative;
  box-shadow: 0px 4px 24px #00000014; }

.dropdown-toggle {
  cursor: pointer;
  font-size: 25px;
  transition: transform 0.3s; }

.dropdown-toggle.rotate {
  transform: rotate(-90deg);
  /* quay mũi tên khi đóng */ }

.dropdown-content {
  display: block;
  margin-top: 8px; }

.dropdown-content.hidden {
  display: none; }

.close-btn {
  background: none;
  border: none;
  font-size: 100%;
  cursor: pointer;
  color: #fff; }

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.banner-page {
  position: relative;
  /* tạo khung tham chiếu cho text */
  width: 100%; }

.banner-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block; }

.banner-page span {
  position: absolute;
  top: 50%;
  /* căn giữa theo chiều dọc */
  left: 50%;
  /* căn giữa theo chiều ngang */
  transform: translate(-50%, -50%);
  /* dịch ngược để đúng giữa */
  color: white;
  font-size: 3rem;
  font-weight: 600; }

@media (min-width: 768px) and (max-width: 1024px) {
  .btn-custom-green {
    padding: 10px 14px !important; } }
.sn-phm {
  background-color: #ffffff;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
  min-height: 900px;
  position: relative; }

.sn-phm .layer {
  position: relative;
  width: 135px; }

.sn-phm .div {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .frame-4 {
  display: flex;
  width: 1440px;
  align-items: flex-start;
  justify-content: center;
  gap: 130px;
  padding: 0px 120px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .text-6 {
  flex: 1;
  margin-top: -1px;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  line-height: var(--body-16-16-regular-line-height);
  position: relative;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  font-style: var(--body-16-16-regular-font-style); }

/* Frame 6 - Container cho các tag filter */
.sn-phm .frame-13 .frame-6 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
  flex-wrap: wrap; }

.sn-phm .frame-6 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto; }

/* Tag - Filter tags */
.sn-phm .tag {
  display: inline-flex;
  gap: 8px;
  padding: 6px 12px;
  background: #225a41;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500; }

.sn-phm .tag .text-wrapper-9 {
  color: #fff;
  font-size: 14px;
  font-weight: 300; }

.sn-phm .tag .close-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.2s; }

.sn-phm .tag .close-btn:hover {
  opacity: 0.8; }

.sn-phm .text-7 {
  width: fit-content;
  font-family: var(--body-16-16-regular-font-family);
  font-weight: var(--body-16-16-regular-font-weight);
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  line-height: var(--body-16-16-regular-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  font-style: var(--body-16-16-regular-font-style); }

.sn-phm .frame-7 {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  padding-bottom: 10px; }

.sn-phm .object {
  position: absolute;
  top: 0;
  left: 0;
  width: 91px;
  height: 326px;
  object-fit: cover; }

.sn-phm .breadcrumb {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 40px; }

.sn-phm .components-separator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0px 8px;
  position: relative;
  flex: 0 0 auto; }

.text-wrapper-7 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-weight: 600;
  color: #27364b;
  font-size: var(--body-16-16-regular-font-size);
  letter-spacing: var(--body-16-16-regular-letter-spacing);
  line-height: var(--body-16-16-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-16-16-regular-font-style); }

/* Frame 10 - Container chính cho header */
.sn-phm .frame-10 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  gap: 8px;
  position: relative;
  margin: 0 0 16px 0;
  padding: 0; }

/* Frame 11 - Header với số lượng kết quả và sắp xếp */
.sn-phm .frame-11 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 95%;
  position: relative;
  flex: 0 0 auto;
  margin-bottom: 20px;
  flex-wrap: wrap; }

/* Text wrapper 8 - Hiển thị kết quả và label */
.sn-phm .frame-11 > .text-wrapper-8 {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400; }

.sn-phm .text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  white-space: nowrap; }

/* Frame 12 - Wrapper cho Sắp xếp */
.sn-phm .frame-12 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto; }

/* Frame 13 - Đang áp dụng */
.sn-phm .frame-13 {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: 24px;
  flex-wrap: wrap; }

/* Button - Dropdown Sắp xếp */
.sn-phm .frame-12 .sort-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 180px;
  justify-content: space-between; }

.sn-phm .frame-12 .sort-button:hover {
  border-color: #225a41; }

.sn-phm .frame-12 .sort-button .text-8 {
  font-size: 14px;
  color: #1f2937;
  font-weight: 400; }

.sn-phm .frame-12 .sort-button .sort-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6b7280;
  display: inline-block; }

/* Ẩn caret mặc định nếu có từ framework (Bootstrap, v.v.) */
.sn-phm .sort-button::after {
  content: none !important;
  display: none !important; }

/* Button 2 - Xóa tất cả */
.sn-phm .button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  color: #eab308;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s; }

.sn-phm .button-2:hover {
  color: #d97706; }

.sn-phm .button-2 .span-wrapper,
.sn-phm .button-2 .span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit; }

.sn-phm .frame-14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.sn-phm .frame-15 {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
  flex: 0 0 auto;
  padding-top: 75px;
  justify-content: flex-start; }

.frame-16 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: visible;
  box-shadow: var(--dropshadow-small); }

.frame-17 {
  position: relative;
  width: 100%;
  /* Full width của .product-wrapper */
  height: 100%;
  /* CỐ ĐỊNH CHIỀU CAO */
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 8px 8px 0 0; }

.frame-17 img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* Cắt đẹp, không méo */
  display: block;
  transition: transform 0.3s ease; }

/* Khung ảnh vuông, không làm ảnh tràn */
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f8f8f8;
  border-radius: 6px 6px 0 0;
  /* Bo góc trên */ }

.product-image-wrapper img {
  width: 100% !important;
  /* BẮT BUỘC FULL WIDTH */
  height: 100% !important;
  /* Full height khung */
  object-fit: cover !important;
  /* Cắt ảnh đẹp, không méo */
  display: block; }

.product-image-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; }

/* Hover effect (tùy chọn) */
.product-card:hover .product-image-img {
  transform: scale(1.05); }

/* Đảm bảo card-body hiển thị đầy đủ */
.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1; }

/* Đảm bảo card có chiều cao đầy đủ */
.product-card {
  display: flex;
  flex-direction: column;
  height: 480px;
  overflow: visible !important; }

.sn-phm .tag-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 10px 2px 8px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #b02d15;
  color: #fff;
  border-radius: 4px;
  z-index: 2;
  /* Để đảm bảo tag nằm trên ảnh */ }

.pagination .page-item.active .page-link {
  background-color: #225a41 !important;
  border-color: #225a41 !important;
  color: #fff !important; }

.sn-phm .frame-19 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; }

.text-9 {
  color: #225a41;
  white-space: nowrap; }

.sn-phm .text-wrapper-10 {
  position: relative;
  text-align: left;
  margin: 0;
  padding: 0;
  font-family: "SVN-Megante-Regular", Helvetica;
  font-weight: 400;
  color: #27364b;
  font-size: 18px;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word; }

.sn-phm .text-wrapper-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  font-family: var(--body-14-14-regular-font-family);
  font-weight: var(--body-14-14-regular-font-weight);
  color: #64748b;
  font-size: var(--body-14-14-regular-font-size);
  letter-spacing: var(--body-14-14-regular-letter-spacing);
  line-height: var(--body-14-14-regular-line-height);
  font-style: var(--body-14-14-regular-font-style); }

.sn-phm .text-wrapper-12 {
  color: #edac43;
  font-size: 20px;
  letter-spacing: var(--body-16-16-semi-bold-letter-spacing);
  line-height: var(--body-16-16-semi-bold-line-height);
  font-style: var(--body-16-16-semi-bold-font-style);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 5px; }

.text-wrapper-12 .normal-price {
  color: #edac43 !important; }

.sn-phm .button-3 {
  height: 44px;
  gap: 12px;
  flex: 1;
  flex-grow: 1;
  border-radius: 4px;
  border: 1px solid;
  border-color: #225a41;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  position: relative;
  box-shadow: 0px 4px 24px #00000014;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%; }

.sn-phm .button-3:active {
  background-color: #1a4731; }

.sn-phm .frame-20 {
  position: relative;
  width: 150px;
  height: 4px;
  background-color: #ecd08f; }

.sn-phm .frame-21 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .frame-22 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content-7 {
  display: flex;
  width: 253px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 0px;
  position: relative;
  flex: 0 0 auto; }

.sn-phm .content-9 label {
  cursor: pointer;
  flex: 1; }

.close-btn {
  background: none;
  border: none;
  font-size: 100%;
  cursor: pointer;
  color: #fff; }

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.banner-page {
  position: relative;
  /* tạo khung tham chiếu cho text */
  width: 100%; }

.banner-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block; }

.banner-page span {
  position: absolute;
  top: 50%;
  /* căn giữa theo chiều dọc */
  left: 50%;
  /* căn giữa theo chiều ngang */
  transform: translate(-50%, -50%);
  /* dịch ngược để đúng giữa */
  color: white;
  font-size: 56px;
  font-weight: 600;
  font-family: "Cormorant-Infant", serif !important; }

.screen-reader-text {
  display: none !important; }

.frame-19 {
  display: flex;
  flex-direction: column;
  /* Xếp nội dung theo chiều dọc */
  align-items: flex-start;
  width: 100%; }

.frame-19 p.product-short-desc {
  align-self: stretch;
  flex: none !important; }

.product-short-desc {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  /* Giới hạn 2 dòng */
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  word-break: break-word !important;
  line-height: 1.4em !important;
  height: 2.8em !important;
  /* = 1.4em * 2 dòng */
  width: 100%;
  text-align: left;
  margin: 0; }

/* ========== STYLE GIÁ ========== */
/* Giá thường (không giảm) */
.product-price .normal-price {
  color: #222; }

/* Giá gốc (bị gạch ngang) */
.product-price .regular-price {
  color: #64748b;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 14px; }

/* Đảm bảo product-price dùng flexbox để sắp xếp thứ tự */
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; }

/* Giá sale (màu vàng) - hiển thị trước */
.product-price .sale-price {
  order: 1;
  color: #edac43;
  font-weight: 600;
  font-size: 16px; }

/* Giá gốc (gạch ngang, màu xám) - hiển thị sau */
.product-price .regular-price {
  order: 2;
  color: #64748b;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 600; }

/* Giá thường (khi không có sale) */
.product-price .normal-price {
  color: #edac43;
  font-weight: 600;
  font-size: 16px; }

/* Ẩn hoàn toàn phần "Original price was..." của WooCommerce */
.screen-reader-text {
  display: none !important;
  visibility: hidden !important; }

.text-wrapper-11 {
  display: none !important; }

.product-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 30.3333%; }

.product-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.product-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

/* Căn tiêu đề và mô tả */
.text-wrapper-10 {
  font-weight: 600;
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word; }

.text-wrapper-11 {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  /* giữ cho các khối đều nhau */ }

.product-short-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; }

/* Giá và nút */
.text-wrapper-12 {
  margin-top: 5px; }

.frame-7 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px; }

/* Layout 2 cột: sidebar trái, sản phẩm phải */
/* Product Archive Header */
.product-archive-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 24px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #6b7280; }

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s; }

.breadcrumb a:hover {
  color: #225a41; }

.breadcrumb-separator {
  color: #d1d5db; }

.breadcrumb .current {
  color: #1f2937;
  font-weight: 500; }

/* Product List Header */
.product-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; }

.product-count {
  font-size: 14px;
  color: #6b7280; }

.product-count strong {
  color: #1f2937;
  font-weight: 600; }

/* Sort Dropdown */
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 12px; }

.sort-label {
  font-size: 14px;
  color: #6b7280; }

.sort-dropdown {
  min-width: 180px;
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s; }

.sort-dropdown:hover {
  border-color: #225a41; }

.sort-dropdown:focus {
  outline: none;
  border-color: #225a41;
  box-shadow: 0 0 0 3px rgba(34, 90, 65, 0.1); }

/* Active Filters */
.active-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap; }

.active-filters-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500; }

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #225a41;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500; }

.filter-tag-remove {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.2s; }

.filter-tag-remove:hover {
  opacity: 0.8; }

.clear-all-filters {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  padding: 0; }

.clear-all-filters:hover {
  color: #b91c1c; }

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  /* 250px cho sidebar, còn lại cho nội dung */
  gap: 24px;
  margin-top: 30px; }

#productSidebar {
  top: 10px !important; }

.label-all-products strong {
  font-weight: 100 !important;
  /* đậm */
  font-size: 16px !important;
  /* chỉnh size */ }

/* Mobile (<=574px): remove permanent sidebar gap and make sidebar off-canvas */
@media (max-width: 574px) {
  /* Collapse the product-container so it doesn't take layout space */
  .product-container {
    width: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    /* keep in flow so sidebar element exists */ }

  .text-a-link-mobile {
    margin: 0 !important; }

  /* Make the sidebar become fixed off-canvas panel */
  .product-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    width: 85vw !important;
    max-width: 360px !important;
    z-index: 1050 !important;
    transform: translateX(-110%) !important;
    /* hidden by default */
    transition: transform 0.28s ease-in-out !important;
    background: #fff !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important; }

  /* When open, slide in */
  .product-sidebar.sidebar-open {
    transform: translateX(0) !important; }

  /* Ensure the overlay covers the page and is above content but under sidebar */
  .sidebar-overlay {
    display: none !important; }

  .sidebar-overlay.overlay-active {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 1040 !important; }

  /* Make main product content take full width */
  .product-content {
    width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important; }

  /* Minor tweak: ensure pagination and grid don't reserve sidebar space */
  .shop-layout.productlist {
    display: block !important; } }
@media (min-width: 1200px) {
  .product-wrapper {
    height: 100%;
    min-height: 550px; }

  .productlist-layout {
    transform: translateY(-3%); } }
/* Tablet: bỏ min-width 1440 để không tràn và tinh chỉnh sort button */
@media (max-width: 1200px) {
  .sn-phm {
    min-width: 100% !important; }

  .sn-phm .frame-12 .sort-button {
    min-width: 160px; } }
/* Sidebar */
.product-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  transition: transform 0.3s ease; }

/* Button toggle filter cho mobile/tablet */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #edac43;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap; }

.filter-toggle-btn:hover {
  background: #d99a35; }

.filter-toggle-btn img {
  flex-shrink: 0;
  filter: brightness(0) invert(1); }

/* Sidebar header với nút đóng */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0; }

@media (min-width: 993px) {
  .sidebar-header {
    display: block; } }
.product-container {
  height: 0; }

.sidebar-close-btn {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s; }

.sidebar-close-btn:hover {
  color: #1f2937; }

/* Overlay cho mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease; }

.sidebar-overlay.overlay-active {
  opacity: 1;
  pointer-events: auto; }

input[type="checkbox"]:hover {
  cursor: pointer; }

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px; }

.shop-layout .product-sidebar .sidebar-title {
  margin-bottom: 0px; }

.filter-block {
  margin-bottom: 20px; }

.filter-block h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px; }

.filter-block ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.filter-block li {
  margin-bottom: 6px; }

.filter-block a {
  color: #333;
  text-decoration: none; }

.filter-block a:hover {
  color: #0073aa; }

/* Danh sách sản phẩm: 3 sản phẩm mỗi hàng */
.frame-15 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0; }

/* Responsive: 2 cột ở tablet, 1 cột ở mobile */
@media (max-width: 992px) {
  .title-archive-product {
    display: none; }

  .shop-layout {
    grid-template-columns: 1fr; }

  .frame-15 {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0 !important; }

  .sn-phm .frame-12 .sort-button {
    min-width: 150px;
    padding: 6px 12px; }

  .sn-phm .frame-11 {
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px; }

  .sn-phm .frame-10 {
    position: static;
    background: #fff;
    margin-top: 0; }

  /* Hiển thị button toggle và ẩn sidebar mặc định */
  .filter-toggle-btn {
    display: flex; }

  .sidebar-overlay {
    display: block; }

  .sidebar-close-btn {
    display: block; }

  .product-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    overflow-y: auto;
    z-index: 9999;
    border-radius: 0;
    border: none;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    background: #fff;
    display: block !important;
    /* Đảm bảo sidebar luôn có display block trên mobile */
    padding: 20px 16px; }

  .product-sidebar .title-underline {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0; }

  .product-sidebar.sidebar-open {
    transform: translateX(0); }

  /* Style cho các nút trong sidebar mobile */
  .product-sidebar #sidebar-reset-btn {
    background: #fff;
    color: #225a41;
    border: 1px solid #225a41;
    padding: 10px 16px;
    font-size: 14px; }

  .product-sidebar .btn-warning {
    background: #225a41;
    border: 1px solid #225a41;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px; }

  /* Style cho sidebar title */
  .product-sidebar .sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0; }

  /* Style cho dropdown buttons */
  .product-sidebar .dropdown-btn {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    padding: 12px 0; }

  /* Style cho checkboxes */
  .product-sidebar .form-check {
    margin-bottom: 12px; }

  .product-sidebar .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 1px solid #d1d5db;
    cursor: pointer; }

  .product-sidebar .form-check-input:checked {
    background-color: #225a41;
    border-color: #225a41; }

  .product-sidebar .form-check-label {
    font-size: 14px;
    color: #4b5563;
    cursor: pointer; }

  /* Style cho filter blocks */
  .product-sidebar .filter-block {
    margin-bottom: 20px; } }
@media (max-width: 576px) {
  .frame-15 {
    grid-template-columns: 1fr; }

  .sn-phm .frame-12 .sort-button {
    min-width: 140px;
    padding: 6px 10px; }

  .product-sidebar {
    width: 280px;
    /* Giảm width một chút trên màn hình nhỏ hơn */
    max-width: 90vw; } }
/* Utility classes để ẩn element trên mobile và tablet */
@media (max-width: 992px) {
  .hide_tab {
    display: none !important; } }
@media (max-width: 576px) {
  .hide_mb {
    display: none !important; }

  .product-price .sale-price {
    font-size: 14px !important; } }
.container-product {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 768px) {
  .container-product {
    max-width: 720px; } }
@media (min-width: 992px) {
  .container-product {
    max-width: 960px; } }
@media (min-width: 1200px) {
  .container-product {
    max-width: 1140px; } }
@media (min-width: 1400px) {
  .container-product {
    max-width: 1320px; } }
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0; }

/* Gallery và nút mũi tên */
.product-images {
  position: relative; }

.frame-24 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-bottom: 30px; }

.frame-25 {
  padding-bottom: 30px; }

.main-image-container {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: transparent; }

.main-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.product-description-product {
  padding: 10px 20px;
  font-size: 16px;
  max-height: none;
  overflow: visible;
  transition: max-height 0.3s ease; }

/* Chỉ giới hạn chiều cao trên tablet và mobile */
@media (max-width: 1024px) {
  .product-description-product {
    max-height: 200px;
    overflow: hidden; } }
.description-toggle-wrapper {
  text-align: center;
  padding: 10px 20px;
  display: none; }

/* Chỉ hiển thị nút xem thêm trên tablet và mobile */
@media (max-width: 1024px) {
  .description-toggle-wrapper {
    display: block; } }
.btn-toggle-description {
  background: none;
  border: none;
  color: #edac43;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s; }
  .btn-toggle-description:hover {
    opacity: 0.8; }
  .btn-toggle-description svg {
    transition: transform 0.3s ease; }

.title-underline-product::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background-color: #ecd08f;
  margin-top: 6px;
  border-radius: 2px; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #27364b;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  transition: background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px; }

.gallery-nav:hover {
  background: white;
  opacity: 0.8; }

.gallery-prev {
  left: 15px; }

.gallery-next {
  right: 15px; }

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 0; }

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden; }

.gallery-thumb.more-thumbs {
  position: relative;
  display: block; }

.gallery-thumb.more-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  z-index: 1; }

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #1a5632; }

/* Thông tin sản phẩm */
.product-category {
  color: #666;
  margin-bottom: 10px; }

.product-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px; }

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px; }

.star-rating {
  display: flex; }

.rating-info {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666; }

.product-excerpt {
  margin-bottom: 20px;
  color: #555; }

.image-gallery {
  display: flex;
  gap: 8px; }

.gallery-thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  position: relative; }

.more-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  border-radius: 6px; }

.more-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 18px; }

.main-image img {
  width: 100% !important;
  height: 590px !important;
  object-fit: cover; }
  @media (min-width: 769px) and (max-width: 1024px) {
    .main-image img {
      height: 400px !important; } }
  @media (max-width: 768px) {
    .main-image img {
      height: 300px !important; } }

.text-a-link-mobile {
  color: #64748b;
  margin: 0 5px; }

.description-tabs {
  display: flex;
  gap: 20px;
  cursor: pointer;
  padding-top: 15px;
  justify-content: center; }

/* Thuộc tính sản phẩm */
.product-attributes {
  margin: 20px 0; }

.attribute-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee; }

.attribute-label {
  font-weight: 600;
  color: #333; }

.attribute-value {
  color: #666; }

.in-stock {
  color: #1a5632;
  font-weight: 600; }

.out-of-stock {
  color: #ff4444;
  font-weight: 600; }

.product-sku {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px; }

/* Biến thể sản phẩm */
.variation-options {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap; }

.description-tab.active {
  font-weight: 600;
  border-bottom: 3px solid #ecd08f; }

.description-tab {
  margin: 0 25px;
  list-style: none;
  white-space: no; }

.description-contents {
  padding: 10px 20px; }

.variation-option {
  padding: 0 20px;
  height: 32px;
  border: 0.5px solid #cbd4e1;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  .variation-option .cao-d-c-li-u-2 {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: #000000;
    letter-spacing: 0%;
    white-space: nowrap; }

.variation-option:hover {
  border-color: #225a41;
  background: #f0fdf4; }

.variation-option.selected {
  border-color: #225a41;
  background: #225a41; }
  .variation-option.selected .cao-d-c-li-u-2 {
    color: #ffffff; }

.variation-option.out-of-stock {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through; }

.text-wrapper-10 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px; }

/* Số lượng */
.quantity-wrapper {
  margin: 20px 0; }

.quantity-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333; }

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0.5px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  height: 44px;
  width: fit-content; }

.quantity-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #6b7280; }

.quantity-control .btn-minus-popup {
  border-right: 0.5px solid #e5e7eb; }

.quantity-control .btn-plus-popup {
  border-left: 0.5px solid #e5e7eb; }

.quantity-control button:hover {
  background: #f9fafb; }

.quantity-control input {
  width: 70px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 14px;
  background: #fff;
  color: #000;
  -moz-appearance: textfield; }

.quantity-control input:focus {
  outline: none; }

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Giá */
.product-price {
  font-size: 20px;
  font-weight: bold;
  color: #1a5632; }

/* Nút hành động */
.product-actions {
  display: flex;
  gap: 15px;
  width: 100%; }

.btn-quickorder {
  flex: 1;
  min-width: 0; }

.btn-add-to-cart {
  flex: 1;
  min-width: 0;
  text-decoration: none;
  border: 1px solid #1a5632;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .btn-add-to-cart .text-9 {
    color: #1a5632; }

.button,
.button-2 {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease; }

.button {
  background: #1a5632;
  color: white; }

.button:hover {
  background: #144327; }

.button-2 {
  background-color: #fff;
  border: 2px solid #1a5632;
  border-radius: 8px;
  color: #1a5632; }

.button-2:hover {
  background: #1a5632;
  color: white; }

/* Mô tả */
.product-description {
  line-height: 1.6;
  margin-top: 20px; }

/* Modal */
.order-product-info {
  display: flex;
  padding-bottom: 15px; }

.order-product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px; }

.order-product-details h6 {
  font-weight: 600; }

.order-product-price {
  color: #edac43;
  font-weight: bold;
  font-size: 18px; }

.gallery-thumb.active {
  border: 2px solid #225a41;
  opacity: 1; }

.gallery-thumb {
  cursor: pointer;
  transition: 0.3s; }

.gallery-thumb:hover {
  opacity: 0.7; }

.container-single-product {
  margin-top: 20px; }

.container-product-related {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

/* Widget Có thể bạn quan tâm - Góc dưới bên phải */
.related-products-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  overflow: hidden;
  transition: all 0.3s ease; }

.related-products-widget.minimized {
  max-height: 60px; }

.related-products-widget.minimized .widget-content {
  display: none; }

.widget-header {
  background: linear-gradient(90deg, #1a5f3f 0%, #2d8659 100%);
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.widget-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px; }

.widget-actions {
  display: flex;
  gap: 8px;
  align-items: center; }

.widget-minimize,
.widget-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 4px; }

.widget-minimize i,
.widget-close i {
  font-size: 16px; }

.widget-minimize img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block; }

.widget-minimize:hover,
.widget-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1); }

.related-products-widget.minimized .icon-minimize {
  display: none !important; }

.related-products-widget.minimized .icon-maximize {
  display: block !important; }

.widget-content {
  max-height: 440px;
  overflow-y: auto; }

.widget-content::-webkit-scrollbar {
  width: 6px; }

.widget-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px; }

.widget-content::-webkit-scrollbar-thumb {
  background: #2d8659;
  border-radius: 3px; }

.widget-product-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease; }

.widget-product-item:hover {
  background: #f0f0f0;
  transform: translateX(-3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }

.widget-product-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden; }

.widget-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.widget-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px; }

.widget-product-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.widget-product-excerpt {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300; }

.widget-product-price {
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; }

.widget-product-price .sale-price,
.widget-product-price .normal-price {
  color: #edac43;
  font-weight: 600;
  font-size: 14px; }

.widget-product-price .regular-price {
  color: #64748b;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 13px; }

.no-products {
  text-align: center;
  color: #999;
  padding: 20px;
  font-size: 13px; }

/* Responsive cho mobile */
@media (max-width: 768px) {
  .related-products-widget {
    width: calc(100% - 40px);
    max-width: 350px;
    bottom: 10px;
    right: 10px; } }
@media (max-width: 480px) {
  .related-products-widget {
    width: calc(100% - 20px);
    right: 10px;
    bottom: 10px; }

  .widget-product-item {
    gap: 8px;
    padding: 8px; }

  .widget-product-image {
    width: 60px;
    height: 60px; } }
/* CSS cải thiện layout phần thông tin sản phẩm */
.product-info {
  padding: 20px;
  padding-top: 30px; }

.product-info .product-rating {
  margin-bottom: 16px; }

.product-info .product-excerpt {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #64748b; }

.product-info .product-attributes {
  margin-top: 24px;
  margin-bottom: 20px; }

.product-info .attribute-item {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 15px; }

.product-info .attribute-label {
  font-weight: 600;
  color: #27364b; }

.product-info .attribute-value {
  color: #64748b; }

.product-info .product-variations {
  margin-top: 20px;
  margin-bottom: 20px; }

.product-info .text-wrapper-10 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #27364b; }

.product-info .variation-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; }

.product-info .quantity-wrapper {
  margin-top: 20px;
  margin-bottom: 20px; }

.product-info .quantity-wrapper label {
  font-weight: 600;
  font-size: 15px;
  color: #27364b;
  margin-bottom: 12px;
  display: block; }

.product-info .product-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px; }

@media (max-width: 768px) {
  .product-info {
    padding: 16px; }

  .product-info .product-title {
    font-size: 22px !important; } }
/* Description tabs: chuyển thành thanh menu ngang trên mobile */
.description-tabs {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0 12px;
  margin: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* firefox */
  /* enable native snap scrolling for smoother swipe */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; }

.description-tabs::-webkit-scrollbar {
  display: none; }

.description-tab {
  flex: 0 0 auto;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  color: #27364b;
  transition: all 0.18s ease;
  /* snap alignment so items snap into place when swiping */
  scroll-snap-align: start;
  scroll-snap-stop: always; }

@media (max-width: 768px) {
  /* Hiển thị 4 mục ngang (mỗi mục chiếm 25%) */
  .description-tab {
    min-width: 25%;
    text-align: center;
    padding: 12px 8px;
    font-size: 14px; }

  .description-contents {
    padding: 0 12px 24px 12px; } }
/* On very small screens show 2 tabs per viewport and allow horizontal swipe with snap */
@media (max-width: 574px) {
  .description-tabs {
    padding: 0;
    /* remove side padding to maximize space */
    margin: 10px 0;
    gap: 8px;
    /* small gap between two visible items */ }

  .description-tab {
    /* 2 items visible -> 1 gap between them. width = (100% - gap) / 2 */
    flex: 0 0 calc((50% - 1 * 8px) / 2);
    min-width: 0;
    /* allow precise shrinking */
    padding: 10px 0px;
    margin: 0 !important;
    font-size: 12px;
    text-align: center; }

  .description-contents {
    padding: 5px 8px 20px 8px; } }
@media (min-width: 768px) {
  .container-product-related {
    max-width: 720px; } }
@media (min-width: 992px) {
  .container-product-related {
    max-width: 960px; } }
@media (min-width: 1200px) {
  .container-product-related {
    max-width: 1140px; } }
@media (min-width: 1400px) {
  .container-product-related {
    max-width: 1320px; } }
/* Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 45% 55%;
    gap: 20px;
    align-items: start; }

  .product-images {
    width: 100%; }

  .main-image-container {
    width: 100%; }
    .main-image-container .main-image {
      width: 100%;
      height: auto; }
      .main-image-container .main-image img {
        width: 100%;
        height: auto;
        object-fit: contain; }

  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 14px; }

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px; }
    .image-gallery .gallery-thumb {
      width: 100%;
      height: 70px;
      object-fit: cover; }

  .product-info {
    width: 100%; }
    .product-info .product-title {
      font-size: 22px !important;
      margin-bottom: 12px; }
    .product-info .product-excerpt {
      font-size: 14px;
      line-height: 1.5; }
    .product-info .product-attributes {
      font-size: 14px; }

  .variation-option {
    padding: 4px 16px;
    font-size: 13px; }

  .quantity-wrapper {
    margin: 15px 0; }

  .product-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%; }

  .btn-quickorder {
    flex: 1;
    font-size: 13px;
    padding: 10px 12px;
    white-space: nowrap; }
    .btn-quickorder .text-cart-10 {
      font-size: 13px; }

  .btn-add-to-cart {
    flex: 1;
    font-size: 13px;
    padding: 10px 12px; }
    .btn-add-to-cart .text-9 {
      font-size: 13px;
      white-space: nowrap; } }
@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px; }

  .product-actions {
    flex-direction: column; }

  .button,
  .button-2 {
    width: 100%; } }
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #27364b;
  background-color: #ffffff;
  overflow-x: hidden; }

/* Section Styles */
.section-title {
  font-family: "SVN-Megante-Regular", "Lexend", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #27364b;
  margin-bottom: 8px; }

.title-underline {
  width: 150px;
  height: 4px;
  background: #ecd08f;
  border-radius: none; }

/* Journey Section */
.journey-section {
  position: relative;
  padding: 64px 0; }

.journey-text {
  max-width: 745px;
  font-size: 18px;
  line-height: 20px;
  color: #27364b; }

.divider-line {
  max-width: 760px;
  margin: 0 auto; }

.divider-line hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  opacity: 1; }

.star-icon {
  width: 24px;
  height: 24px;
  color: #225a41 !important; }

.decoration-left {
  position: absolute;
  top: 50px;
  left: -115px;
  width: 18%;
  height: 361px;
  object-fit: cover;
  transform: rotate(60deg); }

.decoration-right {
  position: absolute;
  top: -80px;
  right: -72px;
  width: 18%;
  height: 355px;
  object-fit: cover;
  transform: rotate(-135deg); }

/* Philosophy Cards */
.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.philosophy-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.philosophy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1); }

.card-icon {
  background: #225a41;
  border-radius: 8px;
  padding: 8px;
  flex-shrink: 0; }

.card-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); }

.card-content p {
  font-size: 16px;
  font-weight: bold;
  color: #27364b;
  margin-bottom: 4px; }

.card-content span {
  font-size: 16px;
  color: #27364b;
  margin: 0; }

.section-title-introduct {
  font-size: 32px; }

/* Mission & Vision Section */
.mission-vision-section {
  background: linear-gradient(0deg, #225a41 0%, #225a41 100%), url("https://c.animaapp.com/mh077hdpUJodsO/img/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 2; }

.mission-content {
  max-width: 726px; }

.mission-content p {
  font-size: 16px;
  line-height: 24px; }

/* Ảnh bên phải */
.decoration-right-mission {
  position: absolute;
  top: 35px;
  right: calc(-50vw + 42%);
  /* đẩy ra mép phải màn hình */
  width: 20vw;
  /* chiếm 20% chiều ngang màn hình */
  height: auto;
  object-fit: contain;
  z-index: 1;
  transform: rotate(-30deg); }

/* Ảnh bên trái */
.decoration-left-mission {
  position: absolute;
  top: -45px;
  left: calc(-50vw + 45%);
  /* đẩy ra mép trái màn hình */
  width: 18vw;
  height: auto;
  object-fit: contain;
  transform: rotate(8deg);
  z-index: 1; }

/* Commitment Section */
.commitment-section {
  background: linear-gradient(0deg, #225a41 0%, #225a41 100%), url("https://c.animaapp.com/mh077hdpUJodsO/img/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 2;
  margin-bottom: 50px; }

.commitment-box {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden; }

.commitment-decoration {
  position: absolute;
  top: -120px;
  right: calc(-50vw + 55%);
  /* đẩy ra mép trái màn hình */
  width: 18vw;
  height: auto;
  object-fit: contain;
  transform: rotate(-155deg); }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-16px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0; }

.delay-200 {
  animation-delay: 0.2s; }

.delay-400 {
  animation-delay: 0.4s; }

.delay-600 {
  animation-delay: 0.6s; }

.delay-800 {
  animation-delay: 0.8s; }

.delay-1000 {
  animation-delay: 1s; }

/* Responsive Styles */
@media (max-width: 991px) {
  .section-title {
    font-size: 24px; }

  .journey-section,
  .brand-philosophy-section,
  .core-values-section,
  .certifications-section,
  .commitment-section {
    padding: 40px 0; }

  .commitment-box {
    padding: 24px; } }
@media (max-width: 767px) {
  .logo {
    width: 100px; }

  .section-title {
    font-size: 20px; }

  .philosophy-card {
    flex-direction: column;
    text-align: center; } }
/* Main Content Styles */
/* Global Typography Overrides */
.section-title.text-white {
  font-size: 32px; }

.banner-title {
  font-size: 56px; }

.section-title-mobile-home {
  font-size: 24px; }

.button-3.add_to_cart_button {
  font-size: 14px;
  font-weight: 400; }

.products-carousel {
  position: relative;
  margin: 20px 0; }

.productContainer-res {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 50px;
  /* tạo khoảng trống cho nút */ }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; }

#prevBtn {
  background-color: #ffffff;
  left: -60px;
  /* bên trái carousel */ }

#nextBtn {
  right: -40px;
  /* bên phải carousel */ }

/* Optional: ẩn nút khi màn hình nhỏ */
@media (max-width: 768px) {
  .carousel-btn {
    width: 35px;
    height: 35px; } }
.consultation-form .btn-success {
  height: 44px;
  font-size: 14px;
  font-weight: 400; }

/* Hero Section */
.hero-section {
  height: 600px; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant-Infant" !important;
  text-transform: uppercase;
  font-weight: 600;
  /* bạn có thể chỉnh: 400, 500, 700 tùy file bạn có */
  letter-spacing: 0.5px;
  /* giúp chữ in hoa dễ đọc hơn */
  line-height: 1.2; }

body {
  font-family: "Lexend", sans-serif !important; }

p {
  font-family: "Lexend", sans-serif !important; }

h1 {
  text-transform: uppercase;
  font-family: "Cormorant-Infant" !important; }

.hero-title-home {
  font-size: 56px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }

.hero-description {
  font-size: 22px;
  font-weight: 200;
  max-width: 545px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); }

@media (min-width: 1200px) {
  .header-section .container {
    max-width: 85vw !important; } }
/* Product Cards */
.title-underline::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #ecd08f;
  /* xanh Bootstrap success */
  margin-top: 8px;
  border-radius: 2px; }

.title-underline-contact::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background-color: #ecd08f;
  /* xanh Bootstrap success */
  /* xanh Bootstrap success */
  margin-top: 8px;
  border-radius: 2px; }

.title-underline-contact {
  display: flex;
  flex-direction: column;
  align-items: center; }

.product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }

.product-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1; }

.product-card .product-description {
  flex-grow: 0; }

.product-card .product-price {
  margin-top: auto; }

.product-card .frame-7 {
  margin-top: auto; }

.product-image img {
  width: 100%;
  height: 303px;
  background: linear-gradient(0deg, white 0%, white 100%);
  border-bottom: 1px solid #e2e8f0; }

.button-3 {
  gap: 12px;
  flex: 1;
  flex-grow: 1;
  border-radius: 4px;
  border: 1px solid;
  border-color: #225a41;
  align-items: center;
  justify-content: center;
  padding: 8px 15px 10px;
  position: relative;
  box-shadow: 0px 4px 24px #00000014;
  cursor: pointer;
  transition: background-color 0.2s; }

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 24px;
  /* chiều cao 1 dòng */
  height: calc(24px * 2);
  /* CHỐT chiều cao 2 dòng */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.product-description {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 21px; }

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: #edac43;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between; }

.product-price .sale-price {
  white-space: nowrap; }

.product-price .regular-price {
  white-space: wrap;
  text-decoration: line-through;
  font-size: 14px; }

/* Carousel Controls */
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm); }

.carousel-indicators {
  position: static;
  /* bỏ absolute */
  margin-top: 1.5rem;
  /* tạo khoảng cách với sản phẩm */ }

.carousel-indicators {
  gap: 5px; }

.indicator {
  width: 48px;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.3s ease; }

.carousel-indicators .indicator.active {
  background-color: #225a41;
  /* xanh Bootstrap success */ }

.indicator:hover {
  background: #225a41 !important; }

/* About Section */
.about-section {
  background: #225a41; }

.background-overlay {
  z-index: 0; }

.background-overlay img {
  object-fit: cover;
  /* Đảm bảo ảnh phủ kín */ }

/* Đảm bảo nội dung hiển thị trên cùng */
.container.position-relative {
  z-index: 1; }

/* Giữ các decorative images trên cùng */
.about-bg-left,
.about-bg-right {
  z-index: 2; }

.about-description {
  max-width: 800px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6; }

.feature-icon {
  width: 72px;
  height: 72px;
  background: #f6f8fc;
  border-radius: 50%; }

.feature-icon img {
  width: 45px;
  height: 45px; }

.feature-title {
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap; }

.about-quote {
  max-width: 589px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6; }

.about-bg-left {
  top: 430px;
  left: -115px;
  width: 357px;
  height: 392px; }

.about-bg-right {
  top: -96px;
  right: -120;
  width: 357px;
  height: 392px;
  transform: rotate(-165deg); }

.about-section .about-description,
.about-section .about-quote {
  text-align: center !important;
  /* căn giữa chữ */
  max-width: 760px;
  /* giới hạn width để xuống hàng hài hoà */
  margin: 0 auto;
  /* canh giữa khung p */ }

/* News Cards */
.btn-outline-success:hover {
  color: #225a41 !important;
  /* Giữ chữ xanh */
  background-color: transparent !important;
  /* Không đổi nền */
  border-color: #225a41 !important;
  /* Giữ viền xanh */ }

.btn-outline-success {
  color: #225a41 !important;
  /* Giữ chữ xanh */
  border-color: #225a41 !important;
  /* Giữ viền xanh */ }

.news-card {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 400px; }

.btn-outline-success:hover {
  background-color: #e1efe1 !important;
  /* Đổi chữ trắng khi hover */
  color: #225a41 !important;
  /* Giữ chữ xanh */ }

.view-more-link {
  text-decoration: none !important;
  /* Bỏ gạch chân link */
  color: #edac43 !important;
  /* Màu chữ link */
  font-size: 14px;
  font-weight: 600; }

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important; }

.news-image {
  width: 100%;
  max-width: 100%;
  height: 250px;
  overflow: hidden;
  object-fit: cover;
  background: linear-gradient(0deg, white 0%, white 100%);
  border-bottom: 1px solid #e2e8f0; }

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: "SVN-Megante-Regular", Helvetica; }

.news-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5; }

.news-date {
  color: var(--text-light);
  font-size: 0.875rem; }

.news-link {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  color: #edac43 !important; }

/* Consultation Section */
.consultation-banner .text-center {
  position: relative;
  top: -100px; }

.consultation-banner {
  height: 400px;
  background-size: cover;
  background-position: center; }

.consultation-subtitle {
  font-size: 16px;
  font-weight: 300;
  max-width: 608px; }

.consultation-form-wrapper {
  margin-top: -245px;
  position: relative;
  z-index: 3; }

.consultation-form {
  max-width: 794px;
  margin: 0 auto;
  border-radius: 8px; }

.consultation-form .form-label {
  font-size: 14px;
  font-weight: 500; }

.consultation-form .form-control {
  background: var(--bg-light);
  border: 0.5px solid #cbd4e1;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 14px;
  font-weight: 300; }

.consultation-form textarea {
  min-height: 245px;
  resize: vertical; }

/* Cho container có thể scroll ngang và chuyển động mượt */
#bestsellerCarousel {
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  /* cho phép scroll */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  transition: none;
  /* ta điều khiển bằng scrollTo */ }

/* 4 item trên 1 hàng */
#bestsellerCarousel .product-item {
  flex: 0 0 25%;
  box-sizing: border-box; }

/* ẩn thanh cuộn nếu muốn */
#bestsellerCarousel::-webkit-scrollbar {
  display: none; }

#bestsellerCarousel {
  -ms-overflow-style: none;
  scrollbar-width: none; }

/* indicator style */
#bestsellerIndicators .indicator {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #e6e9ec;
  transition: background-color .25s;
  cursor: pointer; }

#bestsellerIndicators .indicator.active {
  background: #225A41; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important; }

  .hero-description {
    font-size: 1.25rem !important; }

  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem; }

  .products-carousel .d-flex {
    gap: 1rem; }

  .carousel-btn {
    align-self: center; }

  .features-row .row {
    gap: 2rem; }

  .consultation-form-wrapper {
    margin-top: -100px !important; }

  .consultation-banner {
    height: 250px !important; } }
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important; }

  .hero-description {
    font-size: 1rem !important; }

  .product-actions {
    flex-direction: column; }

  .news-card {
    height: auto !important; }

  .consultation-form .row {
    flex-direction: column; } }
/* Căn giữa bảng */
.table th, .table td {
  vertical-align: middle; }

/* Nút số lượng nhỏ gọn */
.input-group-sm .btn {
  padding: 0.25rem 0.5rem; }

/* Card tóm tắt đẹp */
.card {
  border-radius: 12px; }

/* Hover sản phẩm */
.table tr:hover {
  background-color: #f8f9fa; }

/* Màu chính */
.btn-success, .btn-outline-success {
  border-color: #225A41;
  color: #225A41; }

.btn-success:hover, .btn-outline-success:hover {
  background: #225A41;
  color: white; }

/* Icon xóa */
.bi-x-lg {
  font-size: 12px; }

.cart-summary-wrapper {
  display: none;
  /* ẩn mặc định */ }

/* Thu gọn toàn bộ table */
.table th,
.table td {
  padding: 15px 0.5rem;
  /* giảm padding dọc và ngang */
  font-size: 16px;
  /* giảm cỡ chữ */
  line-height: 1.2;
  /* giảm khoảng cách dòng */
  vertical-align: middle; }

/* Nếu muốn giảm khoảng cách giữa các row trong tbody */
.table tbody tr {
  height: auto;
  /* cho phép height tự động theo padding và font-size */ }

.cart-summary-wrapper .card.sticky-top {
  z-index: 10;
  /* đảm bảo nằm trên các phần tử khác nhưng dưới modal nếu có */ }

.text-a-link-mobile {
  margin: 0 10px;
  text-decoration: none;
  color: #959faf; }

.table-responsive {
  padding-top: 20px; }

.product-subtotal {
  white-space: nowrap;
  /* Không cho xuống dòng */ }

.product-subtotal .woocommerce-Price-amount {
  display: inline-flex;
  /* Giữ phần tiền và ký hiệu tiền tệ cùng dòng */
  align-items: center; }

.product-subtotal .woocommerce-Price-currencySymbol {
  margin-left: 2px;
  /* tạo chút khoảng cách với số tiền */ }

#apply-discount {
  white-space: nowrap;
  /* Không cho xuống dòng trong nút */ }

.discount-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  /* cho full chiều rộng nếu cần */ }

.discount-input-wrapper .clear-discount {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  text-decoration: none;
  font-size: 14px; }

#apply-discount {
  border: 1px solid #225A41;
  color: #225A41;
  font-size: 14px; }

.product-checkbox {
  color: #225A41; }

.table-light {
  background-color: #ffffff !important;
  /* ép luôn nếu Bootstrap không dùng biến */ }

.btn-style-mobile {
  color: #ffffff;
  background-color: #225A41; }

.btn-cancel {
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #225A41;
  font-weight: 500;
  transition: all 0.2s ease; }

.modal-title {
  font-size: 24px; }

.col-md-6 label {
  font-size: 14px;
  font-weight: 600; }

.form-control placeholder {
  font-size: 14px;
  color: #64748B; }

.col-md-6 {
  position: relative;
  display: inline-block; }

.col-md-6 .clear-discount {
  position: absolute;
  right: 20px;
  top: 50%;
  color: #333;
  text-decoration: none;
  font-size: 14px; }

.title-product-mobile {
  font-size: 56pz;
  text-transform: uppercase; }

/* Giới hạn chiều cao của dropdown select */
#customer_province option,
#customer_district option,
#customer_ward option {
  padding: 8px; }

/* Style cho dropdown khi mở */
#customer_province,
#customer_district,
#customer_ward {
  max-height: 200px;
  /* Chiều cao tối đa của dropdown */ }

select[size]:not([size="1"]) {
  height: auto;
  max-height: 200px;
  overflow-y: auto; }

/* Style cho select2 dropdown nếu bạn đang sử dụng select2 */
.select2-results__options {
  max-height: 200px !important;
  overflow-y: auto !important; }

/* Đảm bảo dropdown không bị che bởi modal */
.modal-body {
  overflow: visible !important; }

.form-control {
  height: auto; }

/* Custom scrollbar cho dropdown và modal */
.modal-body::-webkit-scrollbar,
select::-webkit-scrollbar {
  width: 6px;
  height: 6px; }

.modal-body::-webkit-scrollbar-track,
select::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px; }

.modal-body::-webkit-scrollbar-thumb,
select::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px; }

.modal-body::-webkit-scrollbar-thumb:hover,
select::-webkit-scrollbar-thumb:hover {
  background: #555; }

/* ---- Cart page specific styles moved from cart.php ---- */
.product-checkbox.form-check-input {
  accent-color: #225A41;
  /* modern browsers */
  cursor: pointer;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none; }

.product-checkbox.form-check-input:checked {
  background-color: #225A41 !important;
  border-color: #225A41 !important; }

.product-checkbox.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(34, 90, 65, 0.15) !important; }

/* Keep subtotal visible and centered for empty cart */
.empty-cart {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem; }

/* Slight visual hint for non-selected items (optional, used by JS if enabled) */
.product-subtotal.muted {
  opacity: 0.55; }

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 300px;
  overflow: hidden; }

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 56px;
  font-weight: 400;
  margin: 0; }

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0; }

.breadcrumb-item a {
  color: #64748b;
  text-decoration: none;
  font-size: 16px; }

.breadcrumb-item.active {
  color: #27364b;
  font-size: 16px; }

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #64748b; }

/* News Section */
.news-section {
  padding: 40px 0 80px; }

.section-header {
  margin-bottom: 20px; }

.section-title {
  font-size: 24px;
  font-weight: 400;
  color: #27364b;
  margin-bottom: 8px; }

.title-underline {
  width: 150px;
  height: 4px;
  background-color: #ecd08f; }

.news-category-sidebar ul li:last-child hr {
  display: none; }

/* News Card */
.news-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12); }

.news-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  flex-shrink: 0; }

.news-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; }

.news-card a {
  text-decoration: none !important; }

.news-card a:hover,
.news-card a:focus {
  text-decoration: none !important; }

.news-category-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }

.news-category-sidebar a {
  color: #333;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 600; }

.news-category-sidebar a:hover {
  color: #EDAC43 !important; }

.news-category-sidebar a.active {
  color: #EDAC43 !important;
  /* màu vàng cam */
  font-weight: 600; }

.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #27364b;
  margin-bottom: 8px;
  line-height: 1.4;
  /* NEW */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* giới hạn 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.4em * 2);
  /* cố định chiều cao 2 dòng */ }

.news-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
  height: 40px; }

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px; }

.news-date i {
  font-size: 16px; }

.news-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #edac43;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.3s ease; }

.news-link:hover {
  gap: 12px; }

/* Pagination */
.pagination {
  margin-top: 40px; }

.page-link {
  color: #64748b;
  border: 0.5px solid #cbd4e1;
  background-color: #ffffff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 4px;
  font-size: 14px;
  border-radius: 2px; }

.page-item.active .page-link {
  background-color: #225a41;
  border-color: #225a41;
  color: #ffffff; }

.page-link:hover {
  background-color: #f1f4f9;
  border-color: #cbd4e1;
  color: #27364b; }

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 40px; }

  .news-card {
    height: auto; } }
@media (max-width: 767px) {
  .hero-title {
    font-size: 32px; }

  .section-title {
    font-size: 20px; }

  .footer-decoration-right {
    display: none; } }
.news-description-mobile-responsive.news-description {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: calc(1.4em * 2); }

.section-title {
  font-size: 24px !important; }

.container-md-desktop {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.text-transform {
  text-transform: uppercase !important; }

strong, b {
  font-size: 18px; }

.font-weight-600-all {
  font-weight: 600; }

/*Chổ ni là chổ css cho phần phân trang*/
/* Container pagination */
.pagination {
  gap: 12px;
  /* khoảng cách đều giữa các nút */ }

/* Style chung cho page-item */
.pagination .page-item .page-link {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #d0d7dd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  font-weight: 400 !important;
  background-color: #ffffff;
  padding: 0; }

/* Hover */
.pagination .page-item .page-link:hover {
  background-color: #f0f3f5;
  color: #225A41; }

/* Active page */
.pagination .page-item.active .page-link {
  background-color: #225A41;
  color: #ffffff;
  border-color: #225A41; }

/* Disable nút nếu có */
.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed; }

/* Bỏ shadow mặc định của Bootstrap */
.pagination .page-link:focus {
  box-shadow: none; }

/* Icon bên trong */
.pagination .page-item .page-link i {
  font-size: 18px; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Lexend', sans-serif;
  color: #27364b;
  background-color: #ffffff; }

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 300px;
  overflow: hidden; }

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center; }

.text-wrapper-13 {
  font-size: 24px; }

.hero-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 400;
  font-family: 'SVN-Megante-Regular', serif; }

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 20px 0;
  margin: 0; }

.breadcrumb-item a {
  color: #64748b;
  text-decoration: none; }

.breadcrumb-item.active {
  color: #27364b; }

/* Article Detail */
.article-detail {
  background-color: #ffffff; }

.article-meta {
  display: flex;
  align-items: center;
  color: #27364b;
  font-size: 16px; }

.article-title {
  font-size: 28px;
  font-weight: 400;
  color: #27364b;
  font-family: 'SVN-Megante-Regular', serif; }

.title-underline {
  width: 150px;
  height: 4px;
  background-color: #ecd08f; }

.article-image img {
  width: 100%;
  height: 446px;
  border-radius: 4px; }

.article-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #27364b;
  margin-bottom: 20px; }

/* Sidebar */
.sidebar-title {
  font-size: 24px;
  font-weight: 400;
  color: #27364b;
  font-family: 'SVN-Megante-Regular', serif; }

.related-card {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease; }

.related-card:hover {
  transform: translateY(-5px); }

.related-image {
  width: 100%;
  height: 218px;
  background-size: cover;
  background-position: center; }

.related-card .card-title {
  font-size: 18px;
  font-weight: 400;
  color: #27364b;
  font-family: 'SVN-Megante-Regular', serif;
  margin-bottom: 8px; }

.related-card .card-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 16px; }

.post-date {
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 14px;
  font-style: italic; }

.read-more {
  color: #edac43;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease; }

.read-more:hover {
  color: #d99a2f; }

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px; }

  .article-title {
    font-size: 24px; } }
@media (max-width: 767px) {
  .hero-title {
    font-size: 28px; }

  .article-title {
    font-size: 20px; }

  .sidebar-title {
    font-size: 20px; } }
.related-card {
  cursor: pointer; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 300px;
  overflow: hidden; }

.hero-banner img {
  height: 100%;
  object-fit: cover; }

.hero-title {
  position: absolute;
  top: 25%;
  left: 25%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 56px;
  font-weight: 400;
  margin: 0; }

/* Section Headers */
.section-header {
  margin-bottom: 2rem; }

.section-title {
  font-size: 24px;
  font-weight: 400;
  color: #27364b;
  margin-bottom: 0.5rem; }

.title-underline {
  width: 150px;
  height: 4px;
  background-color: #ecd08f; }

/* Info Cards */
.info-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  height: 100%;
  transition: all 0.3s ease; }

.info-card a {
  text-decoration: none;
  color: #27364b; }

.info-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px); }

.info-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #27364b;
  margin-bottom: 0.5rem; }

.info-card p {
  font-size: 16px;
  color: #64748b; }

/* Contact Form */
.contact-form-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  height: 100%;
  position: relative;
  z-index: 1; }

.form-label {
  font-size: 14px;
  color: #27364b;
  margin-bottom: 0.25rem; }

.form-control {
  background-color: #f6f8fc;
  border: 0.5px solid #cbd4e1;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 14px; }

.form-control::placeholder {
  color: #64748b; }

.form-control:focus {
  background-color: #f6f8fc;
  border-color: #edac43;
  box-shadow: none; }

.btn-submit {
  background-color: #225a41;
  border: none;
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease; }

.btn-submit:hover {
  background-color: #1a4731;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12); }

/* Map Section */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 300px; }

.map-container img {
  height: 100%;
  object-fit: cover; }

.map-controls {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid #94a3b8; }

.map-controls .btn {
  border-radius: 0;
  border: 0.5px solid #94a3b8;
  padding: 0.5rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center; }

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px; }

.marker-icon {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 4.67px 28px rgba(0, 0, 0, 0.12); }

.marker-pointer {
  width: 22px;
  height: 16px; }

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px; } }
@media (max-width: 767px) {
  .hero-title {
    font-size: 28px; }

  .section-title {
    font-size: 20px; } }
.font-family-all-Lexend {
  font-family: "Lexend", sans-serif !important;
  text-transform: none !important; }

.font-weight-300 {
  font-weight: 300 !important; }

.font-weight-600 {
  font-weight: 600 !important; }

/* Ngăn overflow trên toàn bộ trang */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
  box-sizing: border-box; }

/* Đảm bảo tất cả phần tử không tràn */
* {
  box-sizing: border-box; }

/* Ngăn các section tràn */
section {
  max-width: 100vw;
  overflow-x: hidden; }

/* Container không được tràn */
/* Mặc định: hiển thị PC title, ẩn mobile */
.desktop-title {
  display: block; }

.mobile-title {
  display: none; }

/* Giới hạn tiêu đề tin tức chỉ 2 dòng cho tất cả màn hình */
.news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(1.4em * 2); }

/* Giới hạn mô tả tin tức chỉ 2 dòng */
.news-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 2);
  margin-bottom: 12px !important; }

/* Thêm border cho card tin tức */
.news-card {
  border: 1px solid #e5e7eb !important; }

/* Card body tin tức - đảm bảo layout đúng */
.news-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%; }

/* News footer luôn ở cuối */
.news-footer {
  margin-top: auto !important; }

/* Tăng số từ hiển thị trong mô tả tin tức */
.news-description {
  min-height: 3em; }

/* ----- Mobile (≤ 768px) ----- */
@media (max-width: 768px) {
  /* Đảm bảo container không tràn */
  .container,
  .container-fluid {
    max-width: 100vw !important;
    overflow-x: hidden;
    padding-left: 15px !important;
    padding-right: 15px !important; }

  .container.home-consultation-form-section {
    padding: 0px !important; }

  /* Override Bootstrap px-5 trên mobile */
  .px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important; }

  .desktop-title {
    display: none; }

  .mobile-title {
    display: block; }

  .hero-section {
    height: 400px !important;
    background-position: center !important;
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0; }

  .hero-title-home {
    font-size: 16px;
    line-height: 1.3; }

  .hero-description {
    font-size: 14px;
    width: 60%; } }
/* Tablet (1024px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .desktop-title {
    display: none !important; }

  .mobile-title {
    display: block !important; }

  .responsive-mobile-home {
    flex-direction: column-reverse !important;
    text-align: center !important;
    padding: 6px 15px 6px !important; }

  .btn-custom-green {
    padding: 10px 14px !important; } }
/* ----- Tablet (768px - 1024px) ----- */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 340px !important; }

  .products-section {
    padding-top: 2rem !important; }

  /* Hiển thị tablet title, ẩn mobile title */
  .desktop-title {
    display: none !important; }

  .mobile-title {
    display: block !important; }

  /* Font size cho tablet */
  .hero-title-home {
    font-size: 32px !important;
    line-height: 1.2;
    font-weight: 700; }

  .hero-description {
    font-size: 16px !important;
    line-height: 1.5;
    max-width: 500px; }

  .product-item {
    flex: 0 0 33.33%;
    max-width: 33.33%; }

  .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Tạo tỷ lệ 1:1 (vuông) */
    overflow: hidden; }

  .product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

  /* Ẩn nút prev/next trên tablet */
  .carousel-btn {
    display: none !important; }

  .responsive-mobile-home {
    flex-direction: column-reverse !important;
    text-align: center !important;
    padding: 6px 15px 6px !important; }

  .home-consultation-form-section #consultationForm .consultation-form {
    max-width: 560px !important; } }
/* ----- Desktop (≥ 1025px) ----- */
@media (min-width: 1025px) {
  .product-item {
    flex: 0 0 25%;
    max-width: 25%; }

  .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Tạo tỷ lệ 1:1 (vuông) */
    overflow: hidden; }

  .product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

  /* Title thẳng hàng với card, không thẳng với nút carousel */
  .products-section .section-header {
    padding-left: 0;
    margin-left: 0; }

  /* Products carousel wrapper */
  .products-carousel {
    position: relative; }

  .carousel-wrapper {
    overflow: hidden;
    width: 100%; }

  /* Nút carousel nằm ngoài 2 bên, hình vuông, không đè lên card */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    /* Bo góc nhẹ, không tròn */
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0; }

  .carousel-btn-prev {
    left: -60px;
    /* Đẩy ra ngoài xa hơn để không đè lên card */ }

  .carousel-btn-next {
    right: -60px;
    /* Đẩy ra ngoài xa hơn để không đè lên card */ }

  .carousel-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }

  .carousel-btn i {
    font-size: 20px;
    color: #333; }

  /* Container sản phẩm */
  .products-carousel #productContainer {
    padding-left: 0; }

  .products-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 85vw !important; }

  .home-new-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 85vw !important; }

  .home-consultation-form-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 85vw !important; }

  .home-consultation-form-section #consultationForm .consultation-form {
    max-width: 1000px !important; } }
/* ----- Mobile: 2 items per view + horizontal scroll ----- */
@media (max-width: 768px) {
  /* Ẩn nút carousel trên mobile */
  .carousel-btn {
    display: none !important; }

  /* Đảm bảo carousel không bị overflow */
  .products-carousel {
    overflow: visible; }

  .carousel-wrapper {
    overflow: visible; }

  /* Giới hạn tiêu đề tin tức chỉ 2 dòng */
  .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2); }

  /* phần chứa products */
  #productContainer {
    display: flex !important;
    /* thành row flex ngang */
    flex-wrap: nowrap !important;
    /* không xuống dòng (giữ 2/cột visible) */
    overflow-x: auto !important;
    /* cho phép scroll ngang */
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    /* mượt trên iOS */
    gap: 12px !important;
    /* khoảng cách giữa card */
    padding: 12px 10px 18px !important;
    /* padding bên trong để card không dính sát lề */
    scroll-snap-type: x mandatory;
    /* snap khi kéo */
    box-sizing: border-box; }

  /* Ẩn thanh cuộn chrome/webkit (vẫn scroll được) */
  #productContainer::-webkit-scrollbar {
    display: none; }

  /* mỗi product chiếm ~50% (2 sản phẩm trên 1 "màn hình") */
  .product-item {
    flex: 0 0 calc(50% - 6px) !important;
    /* trừ gap 12px -> mỗi bên 6px */
    max-width: calc(50% - 6px) !important;
    scroll-snap-align: start;
    /* snap bắt đầu mỗi item */
    box-sizing: border-box; }

  /* nếu bootstrap .row có negative margin, đảm bảo nội dung không bị lệch */
  #productContainer > .product-item {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }

  /* chỉnh ảnh / card gọn cho mobile */
  .product-card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column; }

  .product-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block; }

  .card-body {
    padding: 12px;
    flex: 1 1 auto; }

  /* ẩn control prev/next trên mobile */
  .carousel-btn {
    display: none !important; }

  /* tiêu đề + mô tả nhỏ gọn */
  .product-title {
    font-size: 14px !important;
    line-height: 1.25; }

  .product-description {
    font-size: 13px !important;
    line-height: 1.3;
    color: #666;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important; }

  .product-price {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #edac43; }

  /* căn header nhỏ gọn */
  .products-section {
    padding: 16px 0 !important; }

  .section-header {
    gap: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }

  .section-title {
    font-size: 18px; }

  .view-more-link {
    font-size: 13px; }

  /* indicators (nếu dùng) */
  .carousel-indicators {
    display: none; }

  /* hoặc style nhỏ lại nếu cần */
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important; }

  .view-more-link {
    align-self: flex-end !important;
    font-size: 16px !important;
    margin-top: -35px; }

  .section-title {
    font-size: 18px !important;
    margin-bottom: 0 !important; }

  .title-underline,
  .title-underline::after {
    width: 60% !important;
    max-width: 120px; }

  #productContainer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    /* đẩy card đầu vào trong */
    padding-right: 12px !important;
    overflow-x: auto !important; }

  #productContainer .product-item:first-child {
    margin-left: 0 !important; }

  #productContainer .product-item:last-child {
    margin-right: 0 !important; }

  /* ensure the row wrapper doesn't use bootstrap negative margins */
  #productContainer.row,
  #bestsellerCarousel.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0px !important;
    /* left safe gutter */
    padding-right: 0px !important;
    /* right safe gutter */
    box-sizing: border-box;
    width: 100%; }

  /* primary scroller */
  #productContainer,
  #bestsellerCarousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding-bottom: 10px !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 12px;
    /* so snap starts after left gutter */
    box-sizing: border-box;
    /* remove accidental transforms from JS */
    transform: none !important;
    position: relative; }

  /* ensure first/last cards are not clipped and add end spacer to avoid giant blank */
  #productContainer .product-item,
  #bestsellerCarousel .product-item {
    flex: 0 0 48% !important;
    /* two items per view */
    max-width: 48% !important;
    scroll-snap-align: start;
    box-sizing: border-box;
    margin: 0 !important; }

  /* add a small invisible spacer at the end so last card can snap and not leave a huge blank */
  #productContainer::after,
  #bestsellerCarousel::after {
    content: "";
    flex: 0 0 12px; }

  /* hide native scrollbar but keep scrollable */
  #productContainer::-webkit-scrollbar,
  #bestsellerCarousel::-webkit-scrollbar {
    height: 0;
    display: none; }

  /* hide carousel controls on mobile */
  .carousel-btn {
    display: none !important; }

  /* align header with same left padding as scroller */
  .products-section .section-header,
  .bestsellers-section .section-header {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
    gap: 8px !important;
    justify-content: space-between !important; }

  /* if you want "Xem thêm" visually closer to right */
  .products-section .view-more-link {
    margin-right: 0 !important; }

  /* minor typography */
  .section-title {
    font-size: 18px !important;
    margin: 0 10px 0px 10px !important; }

  .product-title {
    font-size: 14px !important; }

  .product-description {
    font-size: 13px !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important; }

  /* hero / spacing tweak so products sit tight under hero */
  .hero-section {
    margin-bottom: 0 !important; }

  .products-section {
    padding-top: 12px !important;
    margin-top: 0 !important; } }
/* ===== About Section (Mobile Responsive) ===== */
@media (max-width: 768px) {
  .about-section {
    padding: 20px 0px !important;
    overflow: hidden;
    max-width: 100vw;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }

  .about-bg-right {
    top: -37px !important;
    right: -7px !important;
    height: 115px !important;
    max-width: 90px; }

  .about-bg-left {
    top: 338px !important;
    left: -12px !important;
    height: 130px !important;
    max-width: 90px; }

  .features-row-res-mobile {
    margin-bottom: 10px !important;
    margin-top: 0px !important; }

  .text-cente-index-res {
    margin-bottom: 15px !important; }

  .about-description-res-mobile {
    margin-bottom: 10px !important; }

  .custom-res-mobile {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }

  .about-section .section-title {
    font-size: 20px; }

  .about-section .about-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px; }

  .about-section .features-row .row {
    gap: 24px 0; }

  .about-section .feature-icon img {
    width: 48px;
    height: 48px; }

  .about-section .feature-title {
    font-size: 14px; }

  .about-section .about-quote {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px; }

  .about-bg-left,
  .about-bg-right {
    width: 90px;
    opacity: 0.5; }

  .about-section hr {
    display: block;
    /* hiển thị hr ở mobile theo yêu cầu */ }

  .about-section .section-header,
  .about-section .text-center {
    text-align: center; }

  .about-section .features-row {
    margin-top: 20px; } }
/* Giữ 4 icon nằm ngang (1 hàng) trên mobile */
@media (max-width: 768px) {
  /* Hàng icon và text giữ dạng flex ngang */
  .about-section .features-row .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* không xuống hàng */
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    overflow-x: hidden;
    /* không cuộn ngang */
    padding: 0 8px;
    --bs-gutter-x: 0;
    /* bỏ padding cột để 4 item vừa 100% */ }

  /* Mỗi item chia đều 3 phần */
  .about-section .features-row .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center; }

  /* Ẩn thanh cuộn ngang */
  .about-section .features-row .row::-webkit-scrollbar {
    display: none; }

  /* Icon và text nhỏ lại */
  .about-section .feature-icon img {
    width: 42px;
    height: 42px; }

  .about-section .feature-title {
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.3; }

  /* Giảm khoảng cách tổng thể */
  .about-section .features-row {
    margin-top: 16px;
    margin-bottom: 16px; }

  .feature-icon {
    width: 50px !important;
    height: 50px !important; }

  /* Đảm bảo các section không tràn */
  .products-section,
  .news-section {
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0; }

  .news-section {
    padding: 0px !important; }

  .product-description {
    margin-top: 0px !important;
    margin-bottom: 0px !important; }

  .consultation-section {
    padding-top: 0px !important;
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0; }

  .section-title-mobile-home {
    margin-top: 120px !important; }

  .consultation-subtitle {
    font-size: 13px; }

  .text-mobile-home {
    width: 80%; }

  .hero-section-home-responsive {
    height: 300px !important;
    background-position: top center !important;
    margin-top: -35px !important;
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
    margin-bottom: -50px !important; }

  .hero-description-mobile-responsive {
    font-size: 10px !important;
    margin: 0 !important; }

  .products-section-responsive-mobile {
    margin-top: 0 !important;
    position: relative;
    z-index: 10; }

  .news-link-responsive-mobile {
    display: none !important; }

  .news-description-mobile-responsive {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5 !important;
    max-height: calc(1.5em * 2); }

  .text-wrapper-12 .regular-price {
    display: none !important; } }
/* ======================= */
/* MOBILE: Các sản phẩm chính */
/* ======================= */
@media (max-width: 576px) {
  /* Bỏ ảnh trang trí, căn trái toàn bộ */
  .products-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw;
    overflow: hidden; }

  .products-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100vw !important; }

  /* Header: title và link "Xem thêm" */
  .products-section .section-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
    max-width: 100%; }

  .products-section .section-title {
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: left; }

  .products-section .view-more-link {
    font-size: 16px !important;
    color: #edac43 !important;
    text-decoration: none; }

  /* Wrapper cho carousel */
  .products-carousel {
    overflow: visible;
    margin: 0 -15px;
    padding: 0 15px; }

  /* Hàng chứa sản phẩm */
  #productContainer {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px !important;
    margin: 0 !important;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important; }

  #productContainer::-webkit-scrollbar {
    display: none; }

  /* Mỗi sản phẩm chiếm 48% chiều rộng */
  #productContainer .product-item {
    flex: 0 0 calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
    scroll-snap-align: start;
    box-sizing: border-box;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important; }

  /* Card sản phẩm */
  .product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 475px !important;
    width: 100%; }

  .product-image-wrapper-res-mobile {
    height: 170px !important; }

  .product-image-wrapper-res-mobile img {
    width: 100%;
    height: 170px !important;
    object-fit: cover; }

  .card-body {
    padding: 10px 12px !important; }

  .product-title {
    font-size: 14px !important;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px !important;
    line-height: 20px;
    /* chiều cao 1 dòng */
    height: calc(20px * 2);
    /* CHỐT chiều cao 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }

  .product-description {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 8px !important; }

  .product-price {
    font-size: 14px;
    font-weight: 700;
    color: #edac43;
    margin-bottom: 0px !important; }

  /* Nút hành động */
  .frame-7 {
    display: flex;
    flex-direction: column-reverse;
    /* "Thêm vào giỏ" nằm trên "Mua ngay" */
    gap: 8px; }

  .button-3,
  .btn-quickorder {
    width: 100%;
    border-radius: 6px;
    padding: 13px 0;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    display: block; }

  .button-3 {
    border: 1px solid #1a5632;
    background: #fff; }

  .btn-quickorder {
    background-color: #1a5632;
    color: #fff;
    border: none; }

  .section-header-news-res {
    margin-bottom: 0px !important; }

  .productContainer-res {
    padding-top: 0px !important; }

  .section-title-news-res {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0;
    text-align: left; }

  .btn-style-mobile {
    color: #ffffff; }

  /* News Section: 2 hàng x 2 cột chỉ trên mobile */
  .news-section #productContainer {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    gap: 8px !important; }

  .news-section #productContainer > [class*="col-"] {
    flex: 0 0 calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    width: calc(50% - 4px) !important;
    padding: 0 !important;
    margin: 0 !important; }

  /* Ẩn tin tức từ item thứ 5 trở đi */
  .news-section #productContainer > [class*="col-"]:nth-child(n + 5) {
    display: none !important; }

  /* Ẩn nút prev/next và indicators trên mobile */
  .news-section #prevBtn,
  .news-section #nextBtn,
  .news-section #customIndicators {
    display: none !important; } }
@media (max-width: 767px) {
  .consultation-form-wrapper {
    width: 95%;
    margin-left: auto;
    margin-right: auto; }

  .responsive-mobile-home {
    flex-direction: column-reverse !important;
    text-align: center !important;
    padding: 9px 15px 9px !important;
    font-size: 15px !important; } }
/* Tablet: Banner full width và form xếp dọc */
@media (min-width: 577px) and (max-width: 1024px) {
  /* Title underline 60% */
  .title-underline,
  .title-underline::after {
    width: 60% !important;
    max-width: 150px; }

  /* Background full màn hình cho consultation section */
  .consultation-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw; }

  .consultation-banner {
    margin-left: 0;
    margin-right: 0;
    width: 100%; }

  .consultation-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important; }

  /* Padding nhỏ cho các section khác */
  .products-section .container,
  .news-section .container,
  .about-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100vw !important; }

  /* Form xếp dọc giống mobile */
  .consultation-form .row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%; }

  /* News Section: Override col-md-6 để hiển thị 3 cột trên tablet */
  .news-section #productContainer > .col-md-6 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important; } }
/* Ngăn tất cả các phần tử gây overflow ngang */
.sn-phm .footer,
.sn-phm .frame-4 {
  max-width: 100% !important; }

.hero-section .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 85vw !important; }

@media (max-width: 768px) {
  .hero-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important; } }
.about-section {
  max-width: 100vw !important;
  overflow-x: hidden !important; }

/* Đảm bảo row không gây overflow */
/* Responsive padding cho frame-4 trên mobile */
@media (max-width: 768px) {
  .sn-phm .frame-4 {
    padding: 0px 15px !important;
    gap: 20px !important; } }
/* ======================= */
/* MOBILE & TABLET: Product Buttons Stack */
/* ======================= */
/* Mobile: Buttons ở cuối card và căn giữa */
@media (max-width: 767px) {
  /* Card body sử dụng flexbox để đẩy buttons xuống cuối */
  .product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }

  /* Frame-7 chứa 2 nút xếp dọc */
  .frame-7 {
    display: flex;
    flex-direction: column-reverse !important;
    /* Thêm vào giỏ ở trên, Mua ngay ở dưới */
    gap: 12px !important;
    margin-top: auto;
    /* Đẩy xuống cuối card */ }

  /* Nút Mua ngay - full width và căn giữa */
  .btn-quickorder {
    width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; }

  /* Nút Thêm vào giỏ - full width và căn giữa */
  .button-3 {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; } }
/* Tablet: Buttons ở cuối card và căn giữa */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Card body sử dụng flexbox để đẩy buttons xuống cuối */
  .product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }

  /* Frame-7 chứa 2 nút xếp dọc */
  .frame-7 {
    display: flex;
    flex-direction: column-reverse !important;
    /* Thêm vào giỏ ở trên, Mua ngay ở dưới */
    gap: 12px !important;
    margin-top: auto;
    /* Đẩy xuống cuối card */ }

  /* Nút Mua ngay - full width và căn giữa */
  .btn-quickorder {
    width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; }

  /* Nút Thêm vào giỏ - full width và căn giữa */
  .button-3 {
    flex: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; }

  .section-title-res-mobile {
    font-size: 18px !important; } }
/* Mặc định (PC hiển thị, mobile ẩn) */
.footer-contact-mobile {
  display: none; }

.footer-contact-desktop {
  display: block; }

/* Mobile hiển thị, PC ẩn */
@media (max-width: 768px) {
  .footer-contact-desktop {
    display: none !important; }

  .footer-contact-mobile {
    display: block !important;
    width: 100%; }

  .contact-info-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px; }

  .contact-info-mobile .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px; }

  .contact-info-mobile .contact-item i {
    font-size: 18px;
    color: #03604a;
    flex-shrink: 0; }

  .contact-info-mobile .contact-item span {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    text-align: left; }

  .footer-bg-left {
    display: none !important; }

  .footer-bg-right {
    display: none !important; }

  .bi-geo-alt {
    margin-top: -10px !important; } }
@media (max-width: 768px) {
  .introduct-mobile-respon {
    height: 170px !important; }

  .title-introduct-mobile {
    font-size: 20px !important;
    font-weight: 500 !important; }

  .title-underline {
    width: 195px !important; }

  .journey-section-mobile {
    padding: 0px 0px 0px 0px !important; }

  .divider-line-intro-mobile {
    margin-bottom: 0px !important; }

  .image-intro-desktop {
    display: none !important; }

  .image-intro-mobile {
    display: block !important; }

  .certifications-section-intro-mobile {
    padding: 6px 0px 20px !important; }

  .brand-philosophy-section-intro-mobile {
    padding-top: 0px !important;
    padding: 20px 0 !important; } }
.image-intro-desktop {
  display: block; }

.image-intro-mobile {
  display: none; }

@media (max-width: 768px) {
  .section-title-introduct {
    font-size: 18px; }

  .mission-content p {
    font-size: 12px; }

  .journey-text {
    font-size: 12px; }

  .philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* khoảng cách giữa các card */ }

  .philosophy-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #fff;
    /* giữ hoặc bỏ tùy thiết kế */
    padding: 12px 14px;
    border-radius: 8px; }

  .philosophy-card:not(:last-child) {
    margin-bottom: 8px; }

  .card-icon {
    flex-shrink: 0;
    margin-right: 12px; }

  .card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain; }

  .card-content {
    text-align: left;
    /* ✅ căn trái toàn bộ phần chữ */ }

  .card-content h3 {
    font-size: 16px;
    margin: 0 0 4px 0;
    text-align: left;
    /* đảm bảo chắc chắn căn trái */ }

  .card-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    /* căn trái đoạn mô tả */ }

  .decoration-left-mission {
    position: absolute;
    height: 110px;
    top: -45px;
    width: 26vw;
    left: calc(-43vw + 32%); }

  .decoration-right-mission {
    position: absolute;
    top: 200px;
    right: calc(-43vw + 37%);
    width: 20vw;
    height: auto; }

  .divider-line-res-mobile {
    margin-top: 0px !important; }

  .commitment-box {
    padding: 10px !important; }

  .commitment-section-res-mobile {
    padding: 10px 0 !important; }

  .decoration-right {
    position: absolute;
    top: -40px;
    right: -70px;
    width: 30%;
    height: 160px;
    object-fit: cover;
    transform: rotate(-135deg); }

  .decoration-left {
    position: absolute;
    top: 150px;
    left: -73px;
    width: 26%;
    height: 146px;
    object-fit: cover;
    transform: rotate(60deg); }

  .fade-in-res-mobile {
    margin-bottom: 10px !important;
    margin-top: 50px; }

  .mission-vision-section-res-mobile {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important; }

  .margin-mobile-1 {
    margin-bottom: 25px !important; }

  .margin-mobile-2 {
    margin-bottom: 0px !important; } }
@media (max-width: 767px) {
  .journey-section .container {
    position: relative !important;
    overflow: hidden !important; }

  .banner-product-res-mobile {
    padding-left: 0px !important;
    padding-right: 0px !important; }

  .delay-400-res-mobile {
    overflow-y: hidden !important; }

  .image-intro-mobile-mobile-res {
    height: 280px !important; } }
@media (max-width: 768px) {
  .image-contact-mobile {
    height: 170px !important; }

  .title-contact-mobile {
    font-size: 20px !important;
    font-weight: 500 !important; }

  .contact-form-card-mobile-respon {
    box-shadow: none !important;
    padding: 0px !important; }

  .btn-submit-contact-respon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center; }

  .btn-submit-contact-respon img {
    width: 20px;
    height: auto; }

  .map-section-contact-mobile {
    padding-top: 0px !important; }

  .contact-section-respon-mobile {
    padding-top: 15px !important;
    padding-bottom: 30px !important; }

  .consultation_submit_res {
    width: 100% !important; }

  .container-contact-res,
  .container-fluid-contact-res {
    max-width: none !important;
    overflow-x: hidden;
    padding-left: 0px !important;
    padding-right: 0px !important; }

  .text-font-size-mobile-14 {
    font-size: 14px !important; }

  .text-font-size-mobile-12 {
    font-size: 12px !important; }

  .font-family-all-Lexend {
    font-family: "Lexend", sans-serif !important;
    text-transform: none !important; }

  .margin-top-mobile {
    margin-top: 40px; } }
@media (max-width: 768px) {
  .image-news-mobile {
    height: 170px !important; }

  .title-news-mobile {
    font-size: 20px !important;
    font-weight: 500 !important; }

  .container-md-news-mobile {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-top: 10px !important; }

  .news-section-responsive-mobile {
    margin-top: 20px; }

  .news-description-height-mobile {
    height: 100% !important; }

  .container-md-responsive-mobile {
    padding-right: 15px !important;
    padding-left: 15px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .container-md-responsive-mobile {
    padding-left: 15px !important;
    padding-bottom: 15px !important;
    margin-top: 10px !important; }

  .article-title-news-detail-mobile {
    margin-bottom: 0px !important;
    font-size: 16px !important; }

  .article-meta-news-detail-responsive {
    margin-bottom: 5px !important; }

  .article-image-news-mobile {
    height: 197px !important; }

  .article-image-news-mobile img {
    height: 197px !important; }

  .related-posts-responsive_mobile {
    padding-top: 5px !important; }

  .news-image {
    height: 170px !important; }

  .news-title {
    font-size: 14px; }

  .news-description {
    font-size: 12px; }

  .section-title-mobile-size {
    font-size: 16px !important; }

  .breadcrumb-item a {
    font-size: 14px; }

  .news-date {
    font-size: 12px !important; }

  .breadcrumb-item-res-mobile {
    font-size: 14px !important; }

  .article-meta {
    font-size: 12px; }

  .sidebar-title-res-mobile {
    font-size: 16px !important; }

  .card-title-res-mobile {
    border-bottom: 0px solid #e9ecef !important;
    padding-bottom: 0px !important; }

  .related-card .card-title {
    font-size: 14px !important; }

  .related-card .card-text {
    font-size: 12px !important; }

  .post-date {
    font-size: 12px !important; }

  .article-content p {
    font-size: 14px !important; }

  .container-md-res-mobile {
    padding-left: 0px;
    padding-right: 0px; }

  .container-fluid-news-res {
    max-width: none !important;
    overflow-x: hidden;
    padding-left: 0px !important;
    padding-right: 0px !important; }

  .size-full {
    max-width: 100%;
    height: 197px; }

  strong, b {
    font-size: 16px; } }
/* ----------------- Mobile Responsive Header ----------------- */
/* Header container */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    /* menu xếp dọc */
    gap: 10px;
    margin-top: 10px; }

  .navbar-nav .nav-item {
    margin-right: 0;
    /* bỏ khoảng cách bên phải */ }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem; }

  /* Search box */
  .search-box {
    width: 180px !important; }

  .search-box input {
    width: calc(100% - 40px);
    /* input rộng đủ trong box */
    font-size: 14px; }

  /* Cart button */
  .cart-btn {
    width: 36px;
    height: 36px; }

  .header-section .container-fluid {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important; }

  .desktop-header-responsive {
    visibility: hidden; }

  .mobile-header-responsive {
    visibility: visible; }

  .logo-placeholder-mobile {
    margin-left: 50px; } }
/* Tablet: Header giống mobile */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Ẩn desktop header, hiện mobile header */
  .desktop-header-responsive {
    display: none !important; }

  .mobile-header-responsive {
    display: block !important;
    visibility: visible !important; }

  /* Logo căn giữa */
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }

  .logo-placeholder-mobile {
    margin-left: 0 !important; }

  /* Hamburger menu bên trái */
  .navbar-toggler {
    order: -1; }

  /* Icon giỏ hàng ở góc phải */
  .mobile-header-responsive.nav-link {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); }

  /* Menu sidebar giống mobile */
  #navbarNav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh !important;
    background-color: #fff;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 1050; }

  #navbarNav.show {
    left: 0; }

  /* Nút close (X) ở góc phải trên */
  .mobile-menu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0.5rem 0; }

  .menu-logo {
    display: flex;
    align-items: center; }

  .menu-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center; }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px; }

  .navbar-nav .nav-item {
    margin-right: 0; }

  .navbar-collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important; } }
/* Desktop: Header bình thường */
@media (min-width: 1025px) {
  .desktop-header-responsive {
    visibility: visible; }

  .mobile-header-responsive {
    display: none !important; } }
/* Tối ưu cho màn hình nhỏ hơn 576px */
@media (max-width: 576px) {
  .search-box {
    width: 100% !important; }

  .search-box input {
    font-size: 13px; }

  .cart-btn {
    width: 32px;
    height: 32px; }

  .logo-placeholder img {
    width: 90px;
    /* logo nhỏ hơn */ }

  .navbar-nav {
    gap: 8px; } }
/* Điều chỉnh nút toggle menu */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem; }

.navbar-toggler-icon {
  background-size: 1.5rem 1.5rem; }

/* Chỉ áp dụng cho mobile < 768px */
@media (max-width: 767.98px) {
  #navbarNav {
    position: fixed;
    /* Đặt menu lên trên nội dung */
    top: 0;
    left: -260px;
    /* Ẩn bên trái */
    width: 260px;
    /* Chiều rộng menu */
    height: 100vh !important;
    /* Chiều cao full màn hình */
    background-color: #fff;
    /* Màu nền menu */
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 1050;
    /* Đảm bảo nằm trên nội dung */ }

  #navbarNav.show {
    left: 0;
    /* Khi mở menu sẽ hiện từ trái sang phải */ }

  /* Nút close (X) ở góc phải trên */
  .mobile-menu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0.5rem 0; }

  .menu-logo {
    display: flex;
    align-items: center; }

  .menu-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center; }

  /* Tùy chỉnh các link menu nếu cần */
  #navbarNav .nav-link {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500; }

  /* Tắt hiệu ứng collapse mặc định của Bootstrap */
  .navbar-collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important; }

  .navbar-light-mobile-res {
    padding-left: 0px !important;
    padding-right: 0px !important; } }
/* Responsive cho mobile */
@media (max-width: 768px) {
  .image-product-mobile {
    height: 170px !important; }

  .title-product-mobile {
    font-size: 20px !important;
    font-weight: 500 !important; }

  .sn-phm .frame-10 {
    width: 100% !important;
    position: static;
    margin-top: 0;
    left: 0px !important; }

  .sn-phm {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; }

  .product-content .frame-15 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    /* 2 sản phẩm mỗi hàng */
    gap: 8px !important;
    /* Giảm khoảng cách giữa các sản phẩm */
    width: 100% !important;
    box-sizing: border-box !important; }

  .shop-layout {
    grid-template-columns: 1fr;
    /* Chỉ hiển thị cột sản phẩm */
    display: block;
    /* Đảm bảo không gian của cột sản phẩm không bị ảnh hưởng */ }

  .product-wrapper {
    width: 100%;
    max-width: 100%; }

  .ajax_add_to_cart_responsive_mobile {
    width: 100% !important; } }
@media (max-width: 768px) {
  .product-price .regular-price {
    display: block;
    margin-bottom: 5px; }

  .sn-phm .text-wrapper-10 {
    font-weight: 600; }

  .sn-phm .frame-19 {
    gap: 0px; }

  .frame-11 .text-wrapper-12 {
    margin-bottom: 0px !important; }

  .text-10 {
    font-weight: 500; }

  .frame-15-responsive-mobile {
    padding-top: 0px !important; }

  .sn-phm .breadcrumb {
    top: 10px; }

  .text-a-link-mobile {
    color: #333 !important;
    text-decoration: none !important; }

  .product-wrapper-mobile-res {
    height: 450px !important; }

  .wrapper-11-res-mobile {
    margin-top: 10px !important;
    display: flex !important;
    justify-content: center !important; }

  .wrapper-11-res-mobile .product-price {
    justify-content: center !important; }

  .sn-phm-res-mobile {
    padding-top: 20px !important; }

  .frame-7-res-mobile {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    margin-top: 0px !important;
    gap: 8px !important; }

  .text-wrapper-10-res-mobile {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5 !important;
    max-height: calc(1.5em * 2); }

  .banner-product-mobile-res {
    padding-left: 0px !important;
    padding-right: 0px !important; } }
@media (max-width: 768px) {
  .image-product-detail-mobile {
    height: 170px !important; }

  .title-product-detail-mobile {
    font-size: 20px !important;
    font-weight: 500 !important; }

  .main-image {
    width: 100%;
    height: auto; }

  .img-fluid {
    width: 100%; }

  .text-wrapper-12-mobile {
    font-size: 20px !important; }

  .banner-product-detail-mobile-res {
    padding-left: 0px !important;
    padding-right: 0px !important; } }
/* --- Responsive cho phần product-info --- */
@media (max-width: 768px) {
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; }

  .gallery-thumb,
  .gallery-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px; }

  .product-info {
    padding: 10px; }

  .product-info .product-title {
    font-size: 20px !important;
    line-height: 22px; }

  .product-info .product-category {
    font-size: 14px;
    margin-bottom: 6px; }

  .product-info .product-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px; }

  .product-info .product-variations {
    margin-bottom: 10px; }

  .product-info .variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }

  .product-info .variation-option {
    flex: 1 1 calc(33.33% - 8px);
    text-align: center; }

  .product-info .quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px; }

  .product-info .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px; }

  .product-info .product-actions button,
  .product-info .product-actions a {
    width: 100%; }

  .product-info .product-price {
    font-size: 20px;
    margin-top: 8px; }

  .container-md-product-mobile {
    margin-top: 10px; }

  .product-detail-layout-mobile {
    gap: 0px !important; }

  .related-image {
    height: 170px !important; }

  .main-image img {
    height: 350px !important; }

  .text-wrapper-13 {
    font-size: 20px; }

  .frame-25 {
    padding: 5px 5px; }

  .products-selling-responsive-mobile {
    margin-top: 50px !important; }

  .products-selling-responsive-mobile-2 {
    margin-top: 20px !important; } }
@media (max-width: 767px) {
  .product-actions-res-mobile {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important; }

  .product-actions-res-mobile .btn-quickorder,
  .product-actions-res-mobile #add-to-cart-btn,
  .product-actions-res-mobile a.button-3 {
    width: 48% !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    white-space: nowrap; }

  .products-selling-responsive-mobile-2 {
    margin-top: 55px !important; } }
@media (max-width: 535px) {
  .products-selling-responsive-mobile-2 {
    margin-top: 20px !important; } }
:root {
  --primary-color: #225a41;
  --secondary-color: #edac43;
  --text-dark: #27364b;
  --text-muted: #64748b;
  --bg-light: #f1f4f9;
  --white: #ffffff;
  --danger: #d83232; }

.hero-search {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2; }

.hero-search .container {
  position: relative;
  z-index: 3; }

.hero-search h1 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem; }

.search-box {
  max-width: 735px;
  margin: 0 auto; }

.search-box .input-group-text {
  border-right: none;
  padding: 0.5rem 0.25rem 0.5rem 0.5rem; }

.search-box .form-control {
  border-left: none;
  font-size: 14px;
  padding: 0.5rem; }

.search-box .form-control:focus {
  box-shadow: none;
  border-color: #ced4da; }

.btn-search {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  padding: 0.75rem 1rem;
  border: none;
  white-space: nowrap; }

.btn-search:hover {
  background-color: #d99a2f; }

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0; }

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none; }

.breadcrumb-item.active {
  color: var(--text-dark); }

/* Section Headers */
.section-header {
  margin-bottom: 1.5rem; }

.section-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem; }

.title-underline {
  width: 150px;
  height: 4px;
  background-color: #ecd08f;
  border-radius: none; }

.search-result-text {
  font-size: 1rem;
  color: var(--text-dark); }

.search-result-text strong {
  color: var(--text-dark);
  font-weight: 600; }

/* ========================================
   FIX: GIỮ GIAO DIỆN CARD GIỐNG TRANG SẢN PHẨM
   → CHỈ TRONG TRANG TÌM KIẾM: 4 CỘT, KHÔNG TRÀN
======================================== */
/* Reset lại layout mặc định của sản phẩm trong trang search */
.search-results-page .search-results-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* Khoảng cách giữa các sản phẩm */
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box; }

@media (max-width: 768px) {
  .search-results-page .product-price {
    min-height: 55px;
    /* Đảm bảo chiều cao cho 2 dòng giá */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Căn trên */ }

  .search-results-page .col-6 {
    margin-bottom: 20px;
    /* Thêm khoảng cách giữa các hàng */ }

  .search-results-page .product-wrapper {
    height: 100%;
    /* Đảm bảo wrapper bao trọn nội dung */ } }
.search-results-page .btn-quickorder,
.search-results-page .add_to_cart_button {
  height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1; }

/* Đảm bảo mỗi .product-wrapper chiếm đúng 1 ô */
.search-results-page .product-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  flex: unset !important; }

.search-title {
  padding: 15px 0;
  font-size: 18px; }

.frame-7 {
  margin-bottom: 12px; }

.frame-19 {
  display: flex;
  flex-direction: column;
  /* Xếp nội dung theo chiều dọc */
  padding: 10px;
  width: 100%; }

.frame-19 p.product-short-desc {
  align-self: stretch;
  flex: none !important; }

.tag-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 10px 2px 8px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #b02d15;
  color: #fff;
  border-radius: 4px;
  z-index: 2;
  /* Để đảm bảo tag nằm trên ảnh */ }

.text-wrapper-10 {
  text-align: left !important;
  /* bắt buộc canh trái */ }

.product-price {
  margin: 5px 10px !important; }

.filter-block {
  padding-bottom: 10px;
  margin-bottom: 10px; }

.filter-block:last-child {
  border-bottom: none; }

.dropdown-btn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center; }

.dropdown-btn:after {
  content: "\25BC";
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.2s; }

.dropdown-btn[aria-expanded="false"]:after {
  transform: rotate(-90deg); }

.filter-block div {
  margin-bottom: 4px; }

.filter-block input[type="checkbox"] {
  margin-right: 6px;
  accent-color: #1a5632; }

/* Đảm bảo mọi checkbox trong form filter dùng màu chủ đạo */
#product-filter-form input[type="checkbox"] {
  accent-color: #1a5632; }

#product-filter-form input[type="range"] {
  accent-color: #1a5632;
  -webkit-appearance: none;
  appearance: none;
  background: transparent; }

.range-group {
  position: relative;
  height: 36px; }

.range-group .range-base {
  position: absolute;
  left: 0;
  right: 0;
  /* top: 50%;
        transform: translateY(-50%); */
  height: 6px;
  background: #e8edf3;
  border-radius: 6px;
  z-index: 1; }

.range-group .range-progress {
  position: absolute;
  /* top: 50%;
        transform: translateY(-50%); */
  height: 6px;
  background: #1a5632;
  border-radius: 6px;
  z-index: 2;
  left: 0;
  width: 0; }

#product-filter-form input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent; }

#product-filter-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #1a5632;
  border: none;
  border-radius: 2px;
  transform: rotate(45deg);
  cursor: pointer;
  margin-top: -3px; }

/* Trình duyệt Firefox */
#product-filter-form input[type="range"]::-moz-range-track {
  height: 6px;
  background: transparent; }

#product-filter-form input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #1a5632;
  border: none;
  border-radius: 2px;
  transform: rotate(45deg);
  cursor: pointer; }

#product-filter-form input[type="range"]::-ms-track {
  height: 6px;
  background: transparent;
  border-color: transparent;
  color: transparent; }

#product-filter-form input[type="range"]::-ms-thumb {
  width: 12px;
  height: 12px;
  background: #1a5632;
  border: none;
  border-radius: 2px;
  transform: rotate(45deg);
  cursor: pointer; }

#product-filter-form input[type="number"] {
  font-size: 13px; }

#product-filter-form .btn-warning {
  background: #f7b500;
  border: none;
  color: #fff;
  font-weight: 600; }

#product-filter-form .btn-outline-secondary {
  border: 1px solid #b5b5b5;
  color: #1a5632;
  font-weight: 600; }

.product-sidebar {
  position: sticky;
  top: 100px;
  font-size: 16px;
  font-weight: 300; }

#price-min-val::placeholder,
#price-max-val::placeholder {
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #64748b !important; }

.border-green {
  border-color: #225a41; }

.text-green {
  color: #225a41; }

#sidebar-reset-btn:hover {
  border-color: #225a41 !important;
  color: #225a41 !important; }

/* Bo tròn nút Đặt lại/Áp dụng theo yêu cầu thiết kế (radius 4px) */
#sidebar-reset-btn,
#sidebar-apply-btn {
  border-radius: 4px !important; }

/* Nút Áp dụng: background primary/20 ở tablet & mobile */
@media (max-width: 992px) {
  #sidebar-apply-btn {
    background-color: #225a41 !important;
    /* primary #225A41 @ 20% */
    color: #fff !important;
    /* đảm bảo độ tương phản trên nền nhạt */
    border: 1px solid rgba(34, 90, 65, 0.2) !important; } }
/* Huy hiệu đỏ báo có bộ lọc đang áp dụng (mobile + tablet) */
.filter-toggle-btn {
  position: relative !important; }

.filter-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e53935;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 1; }

.product-content.productlist-layout nav ul .page-item .page-link {
  border-radius: 2px !important;
  border: 1px solid #cbd4e1 !important;
  font-size: 14px !important;
  color: #64748b !important; }

.product-content.productlist-layout nav ul .page-item.active .page-link {
  color: #fff !important; }

/* Ẩn huy hiệu trên desktop */
@media (min-width: 993px) {
  .filter-badge {
    display: none !important; } }
.productlist-sort {
  border-radius: 4px !important;
  padding: 6px 14px !important;
  font-size: 14px !important;
  display: inline-block !important;
  white-space: nowrap !important;
  width: auto;
  min-width: 0 !important;
  /* ghi đè min-width của theme */
  max-width: none !important;
  /* để nội dung quyết định chiều rộng */
  background: #fff !important;
  cursor: pointer !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 16px !important;
  padding-right: 35px !important; }

.productlist-sort:hover {
  border-color: #1a4731 !important; }

.productlist-sort:focus {
  outline: none !important;
  border-color: #225a41 !important;
  box-shadow: 0 0 0 2px rgba(34, 90, 65, 0.1) !important; }

#sort-form {
  display: inline-block; }

.fs-18 {
  font-size: 18px !important; }

.fs-14 {
  font-size: 14px !important; }

.font-CormorantInfant {
  font-family: "Cormorant Infant" !important; }

.fs-16 {
  font-size: 16px !important; }

.color-64748B {
  color: #64748b; }

.color-27364B {
  color: #27364b !important; }

.color-555 {
  color: #555; }

.productlist-add-to-cart {
  padding-top: 12px !important; }

.productlist-title-underline-contact::after {
  content: "";
  display: block;
  width: 8rem;
  height: 4px;
  background-color: #ecd08f;
  margin-top: 8px;
  border-radius: 2px; }

.productlist-title-underline {
  display: flex;
  flex-direction: column;
  align-items: center; }

#productlist-productcard .frame-16 .frame-18 .w-100 .frame-11 .regular-price {
  order: 2;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600; }

#productlist-productcard .frame-16 .frame-18 .frame-19 {
  padding: 0px !important; }

.productlist-layout .frame-10 .frame-11 {
  margin-bottom: 0px !important; }

#productlist-productcard .frame-16 .frame-18 .w-100 .frame-7 .btn-quickorder {
  border-radius: 4px;
  min-height: 30px; }

/* #productlist-productcard .frame-16 .frame-18 .w-100 .frame-11 .text-wrapper-12 {
        justify-content: flex-start !important;
    } */
.product-content.productlist-layout nav ul {
  gap: 5px !important; }

@media (min-width: 993px) {
  .h-fit-content {
    height: fit-content !important; } }
/* Đảm bảo card luôn thẳng nhau trên tất cả các màn hình */
#productlist-productcard {
  display: flex;
  flex-direction: column;
  height: 100%; }

#productlist-productcard .frame-16 {
  display: flex;
  flex-direction: column;
  height: 100%; }

#productlist-productcard .frame-16 .frame-18 {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between; }

#productlist-productcard .frame-16 .frame-18 .frame-19 {
  flex: 1; }

@media (max-width: 992px) {
  .productlist-section-title {
    display: flex !important; }

  .product-content.productlist-layout nav ul .page-item.active .page-link {
    color: #fff !important; }

  .sn-phm .button-3 {
    padding: 7px 14px !important; }

  .product-price .sale-price {
    padding: 0px;
    font-size: 14px; }

  #productlist-productcard {
    height: 100% !important;
    max-height: 470px !important; }

  #title-responsive-underline {
    display: flex !important; }

  #productlist-productcard .frame-16 .frame-18 .frame-19 {
    padding: 0px !important; }

  #productlist-productcard .frame-16 .frame-18 .w-100 .frame-11 {
    gap: 0px !important; }

  #productlist-productcard .frame-16 .frame-18 .w-100 .frame-11 {
    justify-content: flex-start !important; } }
@media (max-width: 768px) {
  #productlist-productcard {
    max-height: 550px !important;
    height: 100% !important; }

  #productlist-productcard .frame-16 .frame-18 {
    padding: 10px !important; }

  #productlist-productcard .frame-16 .frame-18 .frame-19 a,
  #productlist-productcard .frame-16 .frame-18 .frame-19 p {
    font-size: 14px !important; }

  #productlist-productcard .frame-16 .frame-18 .frame-19 {
    padding: 0px !important; }

  #productlist-productcard .frame-16 .frame-18 .w-100 .frame-11 .product-price,
  #productlist-productcard .frame-16 .frame-18 .w-100 .frame-11 .regular-price {
    font-size: 14px !important; }

  .productlist:not(:has(.no-products)) .product-content .frame-14 .frame-15 {
    display: grid !important; }

  #title-responsive-underline {
    display: flex !important; }

  /* Hiển thị giá gạch trên mobile */
  .text-wrapper-12 .regular-price {
    display: inline-block !important; }

  #productlist-productcard .frame-16 .frame-17 {
    height: auto !important; } }
/* 3. Responsive chuẩn */
@media (max-width: 991.98px) {
  .search-results-page .search-results-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) {
  .search-results-page .search-results-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .search-results-page .search-results-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 cột */
    gap: 16px; } }
@media (max-width: 400px) {
  .search-results-page .search-results-grid {
    grid-template-columns: 1fr; } }
/* 4. Đảm bảo container-md không bị padding thừa */
.search-results-page .container-md {
  padding-left: 15px;
  padding-right: 15px; }

.sn-phm-desktop-search-res {
  min-height: 500px !important; }

/* -------------------- */
/* ✅ Desktop: chỉ hiện table, ẩn mobile */
/* -------------------- */
.table-responsive {
  display: block; }

.cart-mobile {
  display: none !important; }

/* -------------------- */
/* ✅ Mobile layout (≤ 767.98px) */
/* -------------------- */
@media (max-width: 991.98px) {
  .btn-cancel {
    display: none !important; }

  /* Cho nút xác nhận chiếm toàn bộ chiều rộng */
  .btn-style-mobile {
    width: 100% !important; } }
@media (max-width: 767.98px) {
  .cart-mobile {
    display: block !important; }

  .cart-item-mobile {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    align-items: flex-start; }

  /* Checkbox góc trái */
  .cart-item-mobile .product-checkbox {
    position: absolute;
    top: 48%;
    left: 12px;
    z-index: 2; }

  /* Ảnh sản phẩm */
  .cart-item-image img {
    width: 131px;
    height: 141px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0; }

  /* Phần nội dung bên phải */
  .cart-item-info {
    flex: 1;
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }

  .cart-item-title {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 3px; }

  .cart-item-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: block; }

  /* Loại + số lượng cùng hàng */
  .cart-item-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px; }

  .cart-item-type,
  .cart-item-qty {
    flex: 1; }

  .cart-item-type label,
  .cart-item-qty label {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
    color: #444; }

  .cart-item-options select,
  .cart-item-options .input-group {
    width: 100%; }

  /* Giá + nút X */
  .cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center; }

  .cart-item-price {
    color: #225A41;
    font-weight: 600;
    font-size: 15px; }

  .cart-item-remove {
    color: #222 !important;
    font-size: 18px; }

  .product-checkbox {
    position: absolute;
    top: 40%;
    left: 4%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 18px;
    height: 18px;
    accent-color: #42725d;
    /* Màu chủ đạo nếu muốn */ }

  .cart-item-image {
    margin-left: 16px; }

  .form-check-input:checked {
    background-color: #42725d;
    border-color: #42725d; }

  .cart-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* Tên bên trái, X bên phải */
    margin-bottom: 4px; }

  .cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-align: left;
    flex: 1; }

  .cart-item-remove {
    font-size: 16px;
    color: #dc3545;
    text-decoration: none;
    margin-left: 8px; }

  .cart-item-remove:hover {
    color: #a71d2a; }

  .responsive-mobile {
    display: none; }

  .container-cart-respon-mobile {
    padding-top: 20px !important; }

  .breadcrumb-res-mobile {
    margin-bottom: 30px !important;
    margin-top: -35px !important;
    gap: 0px !important; } }
@media (max-width: 768px) {
  .image-search-mobile {
    height: 170px !important; }

  .title-search-mobile {
    font-size: 20px !important;
    font-weight: 500 !important; }

  .product-wrapper-cart-mobile {
    height: 450px; }

  .frame-16-cart-mobile {
    height: 450px; } }
/* ===== ORDER MODAL - POPUP ĐẶT HÀNG ===== */
/* Modal Container */
.modal-dialog {
  max-height: 90vh;
  margin: 1.75rem auto;
  display: flex;
  align-items: center; }

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

.order-modal-content {
  width: 1000px;
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 4px;
  padding: 24px;
  gap: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column; }

/* Modal Header */
.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin-bottom: 16px;
  border: none; }

.order-modal-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.order-modal-title {
  font-family: 'Cormorant Infant', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000;
  margin: 0; }

.order-modal-title-underline {
  width: 60%;
  height: 4px;
  background: #ECD08F; }

.order-modal-close {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #666;
  transition: color 0.2s; }
  .order-modal-close:hover {
    color: #000; }

/* Modal Body */
.order-modal-body {
  padding: 0;
  max-height: calc(100vh - 200px);
  overflow-y: auto; }

.order-form-container {
  display: flex;
  gap: 20px; }

.order-form-left {
  width: 466px;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.order-form-row {
  display: flex;
  gap: 12px; }

.order-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px; }
  .order-form-group.order-form-group-full {
    width: 100%; }

.order-form-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: #27364b;
  margin: 0; }

.order-form-input {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 0.5px solid #ccc;
  padding: 0 8px;
  font-size: 14px;
  color: #333;
  background: #F6F8FC;
  transition: border-color 0.2s;
  font-weight: 300; }
  .order-form-input:focus {
    outline: none;
    border-color: #1a5632; }
  .order-form-input::placeholder {
    color: #999; }

.order-form-select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  cursor: pointer; }

.order-form-textarea {
  height: 100px;
  padding: 8px;
  resize: none;
  font-family: inherit; }

/* Cột phải - Thông tin sản phẩm */
.order-form-right {
  width: 466px;
  display: flex;
  flex-direction: column;
  gap: 20px; }

.order-product-info {
  width: 100%;
  min-height: 410px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px; }

.order-product-display {
  display: flex;
  gap: 16px;
  margin-bottom: 12px; }

.order-product-image-wrapper {
  position: relative;
  flex-shrink: 0; }

.order-product-image {
  width: 156px;
  height: 186px;
  object-fit: cover;
  border-radius: 4px;
  background: #fff;
  display: block; }

.order-product-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #7C3AED;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap; }

.order-product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px; }

.order-product-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Cormorant Infant', serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.order-product-description {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; }

/* Phần số lượng */
.order-product-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  justify-content: space-between; }

.order-quantity-label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0; }

.order-quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0.5px solid #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  height: 30px; }

.order-quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-right: 0.5px solid #E5E7EB;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #6B7280; }
  .order-quantity-btn.order-quantity-plus {
    border-right: none;
    border-left: 0.5px solid #E5E7EB; }
  .order-quantity-btn:hover {
    background: #F9FAFB; }

.order-quantity-input {
  width: 70px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 14px;
  background: #fff;
  color: #000; }
  .order-quantity-input:focus {
    outline: none; }

/* Phần giảm giá */
.order-discount-input-wrapper {
  display: flex;
  gap: 8px; }

.order-discount-input-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center; }

.order-discount-input {
  width: 100%;
  height: 40px;
  border: 0.5px solid #ccc;
  border-radius: 4px;
  padding: 0 40px 0 12px;
  font-size: 14px;
  background: #F6F8FC; }
  .order-discount-input::placeholder {
    color: #999; }

.order-discount-clear {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s; }
  .order-discount-clear:hover {
    color: #000; }

.order-discount-btn {
  width: 125px;
  height: 40px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #225A41;
  border-radius: 4px;
  color: #225A41;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center; }

/* Chi tiết giá */
.order-price-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0; }

.order-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.order-price-label {
  font-size: 14px;
  color: #64748B;
  font-weight: 300; }

.order-price-value {
  font-size: 14px;
  font-weight: 600;
  color: #27364B; }

/* Tổng tiền */
.order-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0; }

.order-total-label {
  font-weight: 600;
  font-size: 20px;
  color: #27364B;
  text-transform: uppercase;
  font-family: 'Cormorant-Infant'; }

.order-total-price {
  font-weight: 600;
  font-size: 20px;
  color: #EAA32C; }

/* Nút xác nhận */
.order-submit-btn {
  width: 100%;
  height: 44px;
  background: #225A41;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 12px 16px;
  gap: 12px; }
  .order-submit-btn:hover {
    background: #1a4833; }
  .order-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed; }

/* Toast Notification */
.simple-toast {
  position: fixed;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%) translateY(20px);
  background: #1a5632;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 90%;
  width: fit-content;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); }
  .simple-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); }
  .simple-toast::before {
    content: '✓';
    font-size: 20px;
    font-weight: bold; }

/* Responsive */
@media (min-width: 1200px) {
  .modal-responsive-width {
    max-width: 1000px; } }
@media (min-width: 1000px) and (max-width: 1200px) {
  .modal-responsive-width {
    max-width: 1000px; } }
@media (max-width: 992px) {
  .modal-dialog {
    margin: 1rem auto; }

  .order-modal-content {
    width: 95vw;
    padding: 16px;
    max-height: 85vh; }

  .order-form-container {
    flex-direction: column; }

  .order-form-left,
  .order-form-right {
    width: 100%; }

  .order-product-info {
    min-height: auto; } }
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem; }

  .order-modal-content {
    padding: 12px;
    max-height: 95vh; }

  .order-modal-body {
    max-height: calc(95vh - 100px); }

  .order-modal-title {
    font-size: 18px; }

  .order-form-row {
    gap: 8px; }

  .order-product-display {
    gap: 12px; }

  .order-product-image {
    width: 120px;
    height: 140px; }

  .order-product-title {
    font-size: 14px; }

  .order-product-description {
    font-size: 14px; }

  .order-product-quantity {
    gap: 10px; }

  .order-quantity-label {
    font-size: 13px; }

  .order-quantity-btn {
    width: 36px;
    height: 36px; }

  .order-quantity-input {
    width: 50px;
    height: 36px; } }
/* ===== PRIVACY POLICY PAGE ===== */
/* Banner Section */
.privacy-banner {
  margin-bottom: 40px; }
  .privacy-banner .banner-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden; }
    .privacy-banner .banner-wrapper .banner-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    .privacy-banner .banner-wrapper .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center; }
      .privacy-banner .banner-wrapper .banner-overlay .banner-title {
        font-family: 'Cormorant Infant', serif;
        font-size: 48px;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }

/* Container */
.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 60px; }

/* Breadcrumb */
.breadcrumb-wrapper {
  margin-bottom: 40px; }
  .breadcrumb-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px; }
    .breadcrumb-wrapper .breadcrumb .breadcrumb-item {
      color: #666; }
      .breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
        color: #225A41;
        text-decoration: none;
        transition: color 0.3s; }
        .breadcrumb-wrapper .breadcrumb .breadcrumb-item a:hover {
          color: #1a4833;
          text-decoration: underline; }
      .breadcrumb-wrapper .breadcrumb .breadcrumb-item.active {
        color: #333; }
      .breadcrumb-wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        padding: 0 8px;
        color: #999; }

/* Content Section */
.privacy-content .privacy-section {
  margin-bottom: 40px; }
  .privacy-content .privacy-section:last-child {
    margin-bottom: 0; }
  .privacy-content .privacy-section .section-title {
    font-family: 'Cormorant Infant';
    font-size: 24px;
    font-weight: 600;
    color: #27364B;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    letter-spacing: 1px; }
  .privacy-content .privacy-section .section-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333; }
    .privacy-content .privacy-section .section-content p {
      margin-bottom: 16px; }
      .privacy-content .privacy-section .section-content p:last-child {
        margin-bottom: 0; }
      .privacy-content .privacy-section .section-content p strong {
        font-weight: 600;
        color: #225A41; }
    .privacy-content .privacy-section .section-content .privacy-list {
      list-style: none;
      padding-left: 0;
      margin: 16px 0; }
      .privacy-content .privacy-section .section-content .privacy-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 12px;
        line-height: 1.8; }
        .privacy-content .privacy-section .section-content .privacy-list li::before {
          content: "•";
          position: absolute;
          left: 8px;
          color: #225A41;
          font-weight: bold;
          font-size: 18px; }
        .privacy-content .privacy-section .section-content .privacy-list li strong {
          font-weight: 600;
          color: #225A41; }
      .privacy-content .privacy-section .section-content .privacy-list.contact-info li::before {
        content: "▸";
        font-size: 14px; }

/* Responsive */
@media (max-width: 992px) {
  .privacy-banner .banner-wrapper {
    height: 250px; }
    .privacy-banner .banner-wrapper .banner-overlay .banner-title {
      font-size: 36px; }

  .privacy-content .privacy-section .section-title {
    font-size: 20px; }
  .privacy-content .privacy-section .section-content {
    font-size: 14px; } }
@media (max-width: 768px) {
  .privacy-banner {
    margin-bottom: 30px; }
    .privacy-banner .banner-wrapper {
      height: 200px; }
      .privacy-banner .banner-wrapper .banner-overlay .banner-title {
        font-size: 28px;
        padding: 0 20px; }

  .privacy-container {
    padding: 0 15px 40px; }

  .breadcrumb-wrapper {
    margin-bottom: 30px; }
    .breadcrumb-wrapper .breadcrumb {
      font-size: 13px; }

  .privacy-content .privacy-section {
    margin-bottom: 30px; }
    .privacy-content .privacy-section .section-title {
      font-size: 18px;
      margin-bottom: 16px; }
    .privacy-content .privacy-section .section-content {
      font-size: 14px; }
      .privacy-content .privacy-section .section-content .privacy-list li {
        padding-left: 20px;
        margin-bottom: 10px; } }
@media (max-width: 576px) {
  .privacy-banner .banner-wrapper {
    height: 180px; }
    .privacy-banner .banner-wrapper .banner-overlay .banner-title {
      font-size: 24px;
      letter-spacing: 1px; }

  .privacy-content .privacy-section .section-title {
    font-size: 16px; }
  .privacy-content .privacy-section .section-content {
    font-size: 13px; } }
@font-face {
  font-family: 'Lexend';
  src: url("../fonts/static-Lexend/Lexend-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Lexend';
  src: url("../fonts/static-Lexend/Lexend-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'Cormorant-Infant';
  src: url("../fonts/static-Cormorant-Infant/CormorantInfant-SemiBold.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Lexend';
  src: url("../fonts/static-Lexend/Lexend-ExtraLight.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

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