:root {
  --green-deep: #2d5016;
  --green-mid: #4a7c2f;
  --green-light: #8db87a;
  --blush: #e8c4b8;
  --blush-dark: #d4a090;
  --gold: #c9a96e;
  --gold-dark: #a8834a;
  --cream: #faf8f5;
  --cream-dark: #f0ece5;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;

  /* Font mới: Lora hỗ trợ tiếng Việt tốt hơn Playfair Display */
  --font-display: "Lora", Georgia, serif;
  --font-serif: "Lora", Georgia, serif;
  --font-body: "Be Vietnam Pro", -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.08);
  --shadow-md: 0 8px 32px rgba(45, 80, 22, 0.12);
  --shadow-lg: 0 24px 64px rgba(45, 80, 22, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tiêu đề mục lọc */
.filter-widget-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-bottom: 0;
}

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

html {
  scroll-behavior: smooth;
  background-color: #111; /* Đặt nền tối để hòa hợp với footer khi upload lên Somee */
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  color: var(--green-deep);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--green-mid);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Thanh thông báo */
.announcement-bar {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.announcement-bar i {
  margin-right: 6px;
  color: var(--gold);
}

/* Đầu trang và Thanh điều hướng */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 14px 0;
}

/* Thương hiệu */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Các liên kết điều hướng */
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid) !important;
  padding: 8px 16px !important;
  letter-spacing: 0.04em;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--green-deep);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 85%;
}

.navbar-nav .nav-link:hover {
  color: var(--green-deep) !important;
}

/* Danh mục thả xuống */
.dropdown-menu {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  background: var(--white);
  min-width: 200px;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  font-size: 14px;
  padding: 8px 12px;
  color: var(--text-mid);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--cream);
  color: var(--green-deep);
}

/* Các hành động điều hướng */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--text-mid);
  font-size: 18px;
  transition: var(--transition);
  position: relative;
}

.action-btn:hover {
  background: var(--cream);
  color: var(--green-deep);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--green-deep);
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.btn-outline-flower {
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.btn-outline-flower:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* Nút bật tắt trên di động */
.navbar-toggler {
  border: none;
  font-size: 22px;
  color: var(--green-deep);
  padding: 4px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Các loại nút */
.btn-flower {
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-flower:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-flower-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-flower-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero {
  background: linear-gradient(
    135deg,
    var(--green-deep) 0%,
    #1a3a0a 60%,
    #2d5016 100%
  );
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(201, 169, 110, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(232, 196, 184, 0.1) 0%,
      transparent 60%
    );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--blush);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 110, 0.3);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-flower-icon {
  font-size: 200px;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.hero-float-card.card-top {
  top: 60px;
  right: -20px;
  width: 160px;
}

.hero-float-card.card-bottom {
  bottom: 80px;
  left: -20px;
  width: 180px;
}

.float-card-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin-top: 2px;
}

.float-card-sub {
  font-size: 12px;
  color: var(--text-light);
}

/* Kiểu dáng các phần */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}

/* Thẻ sản phẩm */
.section-products {
  padding: 100px 0;
  background: var(--white);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  z-index: 2;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--green-light);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  gap: 12px;
}

.product-card:hover .product-overlay {
  background: rgba(45, 80, 22, 0.5);
}

.overlay-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-deep);
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
  opacity: 1;
}

.overlay-btn:nth-child(2) {
  transition-delay: 0.05s;
}
.overlay-btn:nth-child(3) {
  transition-delay: 0.1s;
}

.overlay-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-8px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.overlay-btn.btn-admin-edit {
  background: var(--gold);
  color: var(--white);
}

.overlay-btn.btn-admin-edit:hover {
  background: var(--gold-dark) !important;
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  flex: 1;
}

.product-name a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.product-name a:hover {
  color: var(--green-mid);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
}

.product-price-unit {
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 300;
}

.btn-add-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green-deep);
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* Phần danh mục */
.section-categories {
  padding: 100px 0;
  background: var(--cream);
}

.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 80, 22, 0.85) 0%,
    rgba(45, 80, 22, 0.1) 60%
  );
  transition: var(--transition);
}

.category-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(45, 80, 22, 0.9) 0%,
    rgba(45, 80, 22, 0.3) 70%
  );
}

.category-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.15);
}

.category-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  color: rgba(255, 255, 255, 0.2);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--white);
}

.category-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.category-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: translateX(-10px);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* Phần tính năng */
.section-features {
  padding: 80px 0;
  background: var(--green-deep);
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: rgba(201, 169, 110, 0.2);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Phần đặt lịch */
.section-appointment {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.appointment-card {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.appointment-card::before {
  content: "✦";
  position: absolute;
  top: -30px;
  right: 40px;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  pointer-events: none;
}

.appointment-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
}

.appointment-title em {
  color: var(--gold);
  font-style: italic;
}

.appointment-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Kiểu dáng biểu mẫu */
.form-flower .form-control,
.form-flower .form-select {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: var(--transition);
  font-weight: 300;
}

.form-flower .form-control:focus,
.form-flower .form-select:focus {
  background: var(--white);
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74, 124, 47, 0.12);
  outline: none;
}

.form-flower .form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

/* Biểu mẫu tối trên nền xanh */
.form-dark .form-control,
.form-dark .form-select {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
}

.form-dark .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
  outline: none;
  color: var(--white);
}

.form-dark .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
}

.form-dark .form-select option {
  background: var(--green-deep);
  color: var(--white);
}

/* Biểu ngữ trang */
.page-banner {
  background: linear-gradient(135deg, var(--green-deep), #1a3a0a);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 100% at 80% 50%,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 70%
  );
}

.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 8px;
}

.page-banner-title em {
  font-style: italic;
  color: var(--blush);
}

.breadcrumb {
  margin: 0;
}
.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
}

/* Thanh lọc */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

/* Phân trang */
.pagination .page-link {
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  border-radius: var(--radius-sm) !important;
  margin: 0 3px;
  padding: 8px 14px;
  font-size: 14px;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  box-shadow: none;
}

/* Thông báo và Toast */
.alert-flower-success {
  background: rgba(45, 80, 22, 0.08);
  border: 1px solid rgba(45, 80, 22, 0.2);
  border-left: 4px solid var(--green-deep);
  border-radius: var(--radius-md);
  color: var(--green-deep);
  padding: 14px 18px;
  font-size: 14px;
}

.alert-flower-danger {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-left: 4px solid #dc3545;
  border-radius: var(--radius-md);
  color: #dc3545;
  padding: 14px 18px;
  font-size: 14px;
}

/* Kiểu dáng thanh bên giỏ hàng */
.cart-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 500;
  padding: 12px 16px;
  border-bottom: 2px solid var(--cream-dark);
}

.cart-table td {
  vertical-align: middle;
  padding: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-mid);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--cream);
  color: var(--green-deep);
}

.qty-input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: none;
  -moz-appearance: textfield;
  font-weight: 500;
}

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

.qty-input:focus {
  outline: none;
}

/* Các trang xác thực */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 60px 0;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.auth-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 36px;
}

.auth-link-float {
  display: inline-block;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.auth-link-float:hover {
  transform: translateY(-2px);
}

/* Kiểu dáng trang quản trị */
.admin-sidebar {
  background: var(--green-deep);
  min-height: 100vh;
  width: 260px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 24px 0;
  overflow-y: auto;
}

.admin-sidebar-brand {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.admin-nav-link i {
  font-size: 18px;
  width: 20px;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.admin-nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--cream);
  padding: 32px;
}

.admin-topbar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.admin-page-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-deep);
  margin: 0;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  height: 100%;
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.stat-card-icon.green {
  background: rgba(45, 80, 22, 0.1);
  color: var(--green-deep);
}
.stat-card-icon.gold {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-dark);
}
.stat-card-icon.blush {
  background: rgba(232, 196, 184, 0.3);
  color: #c46a50;
}
.stat-card-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.stat-card-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

/* Bảng quản trị */
.admin-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}

.admin-table table {
  margin: 0;
}

.admin-table thead th {
  background: var(--cream);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 14px 20px;
  border-bottom: 1px solid var(--cream-dark);
  white-space: nowrap;
}

.admin-table tbody td {
  padding: 14px 20px;
  vertical-align: middle;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-table tbody tr:hover td {
  background: var(--cream);
}

/* Huy hiệu trạng thái */
.badge-status {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap !important;
}

.badge-cho {
  background: #fff3cd;
  color: #856404;
}
.badge-xacnhan {
  background: #cce5ff;
  color: #004085;
}
.badge-giao {
  background: #d1ecf1;
  color: #0c5460;
}
.badge-dagiao {
  background: #d4edda;
  color: #155724;
}
.badge-huy {
  background: #f8d7da;
  color: #721c24;
}
.badge-hoanthanh {
  background: rgba(45, 80, 22, 0.12);
  color: var(--green-deep);
}

/* Chân trang */
.site-footer-main {
  background: #111;
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand .brand-icon {
  color: var(--gold);
  font-size: 22px;
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--green-mid);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--gold) !important;
  padding-left: 4px;
}

.contact-info p {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info p > i {
  color: var(--gold);
  flex-shrink: 0;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 40px; /* Tăng padding dưới để tránh bị banner Somee đè sát */
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* Tiện ích và Hiệu ứng */
.text-green {
  color: var(--green-deep);
}
.text-gold {
  color: var(--gold);
}
.text-blush {
  color: var(--blush-dark);
}

.bg-cream {
  background: var(--cream);
}
.bg-cream-dark {
  background: var(--cream-dark);
}
.bg-green {
  background: var(--green-deep);
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 18px;
  margin: 0 auto;
  width: fit-content;
}

.divider-ornament::before,
.divider-ornament::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider-ornament::after {
  transform: scaleX(-1);
}

/* Hiệu ứng hiện dần */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.fade-in-up-1 {
  animation-delay: 0.1s;
}
.fade-in-up-2 {
  animation-delay: 0.2s;
}
.fade-in-up-3 {
  animation-delay: 0.3s;
}
.fade-in-up-4 {
  animation-delay: 0.4s;
}

/* Tương thích thiết bị */
@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
    padding: 60px 0;
  }
  .hero-image-side {
    display: none;
  }
  .hero-stats {
    gap: 24px;
  }
  .appointment-card {
    padding: 40px 28px;
  }
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .section-products,
  .section-categories,
  .section-appointment {
    padding: 60px 0;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .auth-card {
    padding: 32px 24px;
  }
  .filter-bar {
    padding: 16px;
  }
}

/* Sửa lỗi biểu tượng mạng xã hội trên nền sáng trang Liên hệ */
.social-links-light a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 18px;
  transition: var(--transition);
}
.social-links-light a:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* Ngăn chặn việc chọn văn bản bằng chuột */
.hero-flower-icon,
.hero-circle,
.hero-badge,
.hero-title,
.hero-desc,
.hero-stats,
.announcement-bar,
.brand-mark,
.brand-icon,
.footer-brand,
.navbar-nav .nav-link,
.brand-name,
.brand-sub,
.footer-desc,
.footer-heading,
.footer-links,
.btn-flower,
.btn-outline-flower,
.filter-widget-title,
.filter-tag,
.price-range-labels,
.price-range-wrap,
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.footer-edit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  font-size: 11px;
  margin-left: 8px;
  transition: var(--transition);
  text-decoration: none !important;
  vertical-align: middle;
}

.footer-edit-icon:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.social-icon-light {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid); /* màu tối, nhìn thấy trên nền sáng */
  font-size: 18px;
  transition: var(--transition);
}
.social-icon-light:hover {
  background: var(--green-deep);
  color: var(--white);
}

.navbar-nav .nav-link.dropdown-toggle::after {
  display: none !important;
}

/* Thêm biểu tượng mũi tên nhỏ bằng icon Bootstrap thay thế mặc định */
.navbar-nav .dropdown-toggle .caret-icon {
  font-size: 11px;
  margin-left: 3px;
  opacity: 0.6;
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
}

.navbar-nav .dropdown-toggle.active .caret-icon,
.navbar-nav .dropdown-toggle.show .caret-icon {
  transform: rotate(180deg);
}

.auth-logo {
  font-size: 40px;
  display: inline-block;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* Trang giỏ hàng */
.cart-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}

.cart-header-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-count {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.cart-item:last-child {
  border-bottom: none;
}
.cart-item:hover {
  background: var(--cream);
}

.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

.cart-item-info {
  min-width: 0;
}

.cart-item-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.3;
  display: block;
}

.cart-item-name:hover {
  color: var(--green-mid);
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}

.cart-item-price-mobile {
  display: none;
}

.cart-item-subtotal {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
  min-width: 100px;
  text-align: right;
}

.cart-item-remove {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-remove:hover {
  background: #f8d7da;
  color: #dc3545;
  border-color: #f8d7da;
}

/* Tóm tắt giỏ hàng */
.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-mid);
}

.cart-summary-total {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
}

.cart-summary-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 16px 0;
}

.cart-summary-note {
  font-size: 12px;
  color: var(--text-light);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-top: 16px;
}

/* Trạng thái giỏ hàng trống */
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.cart-empty-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cart-empty-desc {
  color: var(--text-light);
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* Trang tài khoản */
.account-profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.account-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin: 0 auto 16px;
}

.account-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.account-email {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.account-since {
  font-size: 12px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}

.account-since i {
  color: var(--gold);
  margin-right: 4px;
}

.account-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.account-stat-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.account-stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.account-stat-label {
  font-size: 12px;
  color: var(--text-light);
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
}

.account-nav-link i {
  font-size: 18px;
  width: 20px;
  color: var(--text-light);
}

.account-nav-link:hover {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--green-light);
}

.account-nav-link.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.account-nav-link.active i {
  color: var(--gold);
}

/* Thẻ tài khoản */
.account-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.account-card-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}

.account-card-header h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-card-header p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.account-card .form-flower,
.account-card .table-responsive {
  padding: 28px;
}

/* Bảng tài khoản */
.account-table {
  margin: 0;
  font-size: 14px;
}

.account-table thead th {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 12px 16px;
  border-bottom: 2px solid var(--cream-dark);
  background: transparent;
  white-space: nowrap;
}

.account-table tbody td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
}

.account-table tbody tr:last-child td {
  border-bottom: none;
}
.account-table tbody tr:hover td {
  background: var(--cream);
}

/* Trạng thái tài khoản trống */
.account-empty {
  text-align: center;
  padding: 40px 20px;
}

.account-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.3;
}

.account-empty p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}

/* Tương thích trang giỏ hàng */
@media (max-width: 991px) {
  .cart-item {
    grid-template-columns: 70px 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .cart-item-price {
    display: none;
  }

  .cart-item-price-mobile {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
  }

  .cart-item-qty {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .cart-item-subtotal {
    grid-column: 3 / 4;
    grid-row: 2;
    font-size: 16px;
  }

  .cart-item-remove {
    grid-column: 3 / 4;
    grid-row: 1;
  }
}

@media (max-width: 767px) {
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    padding: 16px;
  }

  .cart-item-img {
    width: 60px;
    height: 60px;
  }

  .cart-item-name {
    font-size: 14px;
  }

  .account-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .account-nav-link {
    flex: 1 1 calc(50% - 4px);
    min-width: 140px;
    font-size: 13px;
    padding: 10px 12px;
    justify-content: center;
  }

  .account-card .form-flower,
  .account-card .table-responsive {
    padding: 16px;
  }
}

/* Thanh kéo chọn khoảng giá */
.price-range-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-deep);
  font-family: var(--font-display);
}

.price-range-wrap {
  position: relative;
  height: 36px;
}

.price-range {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: none;
  pointer-events: none;
  z-index: 2;
  height: 6px;
  margin: 0;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-deep);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
  cursor: pointer;
  pointer-events: all;
  transition: transform 0.15s ease;
}

.price-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-deep);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
  cursor: pointer;
  pointer-events: all;
}

.price-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: var(--cream-dark);
  z-index: 1;
}

.price-range-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-deep));
  border-radius: 3px;
}
/* Sửa lỗi danh mục thả xuống bị cắt trong các bảng Quản trị hoặc Tài khoản */
.admin-table .table-responsive,
.account-card .table-responsive {
  overflow: visible !important;
}

/* Vẫn cho phép cuộn ngang trên thiết bị di động và màn hình trung bình nhỏ hơn 1200px */
@media (max-width: 1199.98px) {
  .admin-table .table-responsive,
  .account-card .table-responsive {
    overflow-x: auto !important;
    padding-bottom: 100px; /* Tạo không gian cho danh mục thả xuống */
  }
}
6px;
    }
}

/* Thanh kéo chọn khoảng giá */
.price-range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-deep);
    font-family: var(--font-display);
}

.price-range-wrap {
    position: relative;
    height: 36px;
}

.price-range {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    background: none;
    pointer-events: none;
    z-index: 2;
    height: 6px;
    margin: 0;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-deep);
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s ease;
}

.price-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-deep);
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
    cursor: pointer;
    pointer-events: all;
}

.price-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 3px;
    background: var(--cream-dark);
    z-index: 1;
}

.price-range-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--green-mid), var(--green-deep));
    border-radius: 3px;
}
/* Sửa lỗi danh mục thả xuống bị cắt trong các bảng Quản trị hoặc Tài khoản */
.admin-table .table-responsive,
.account-card .table-responsive {
    overflow: visible !important;
}

/* Vẫn cho phép cuộn ngang trên thiết bị di động nhỏ */
@media (max-width: 767px) {
    .admin-table .table-responsive,
    .account-card .table-responsive {
        overflow-x: auto !important;
        padding-bottom: 100px; /* Tạo không gian cho danh mục thả xuống */
    }
}
var(--green-deep);
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s ease;
}

.price-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-deep);
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
    cursor: pointer;
    pointer-events: all;
}

.price-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 3px;
    background: var(--cream-dark);
    z-index: 1;
}

.price-range-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--green-mid), var(--green-deep));
    border-radius: 3px;
}
/* Fix Dropdown bị cắt trong các bảng Admin/Account */
.admin-table .table-responsive,
.account-card .table-responsive {
    overflow: visible !important;
}

/* Vẫn cho phép cuộn ngang trên thiết bị di động nhỏ */
@media (max-width: 767px) {
    .admin-table .table-responsive,
    .account-card .table-responsive {
        overflow-x: auto !important;
        padding-bottom: 100px; /* Tạo không gian cho dropdown */
    }
}

/* Sửa lỗi Dropdown bị cắt bởi khung admin-table */
.admin-table {
    overflow: visible !important;
}

/* Chống xuống dòng cho badge trạng thái */
.badge-status {
    white-space: nowrap !important;
}

/* Ngăn bôi đen văn bản */
.no-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE 10 and IE 11 */
    user-select: none;         /* Standard syntax */
}
