 html {
     font-family: '';
 }

 body {
     background-color: #FFF7E6;
 }

 h1 {
     font-size: 2.5rem;
     line-height: 1.2;
 }

 h2 {
     font-size: 2rem;
     line-height: 1.3;
 }

 h3 {
     font-size: 1.75rem;
     line-height: 1.3;
 }

 h4 {
     font-size: 1.5rem;
     line-height: 1.4;
 }

 h5 {
     font-size: 1.25rem;
     line-height: 1.4;
 }

 h6 {
     font-size: 1rem;
     line-height: 1.5;
 }

 p,
 span,
 a,
 button {
     line-height: 1.5;
 }

 .display-5 {
     font-size: 2.5rem !important;
     line-height: 1.2;
 }

 .card-title {
     font-size: 1.25rem !important;
     line-height: 1.4;
 }

 .text-muted {
     font-size: inherit;
 }

 @media (min-width: 768px) and (max-width: 991.98px) {
     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     h3 {
         font-size: 1.6rem;
     }

     h4 {
         font-size: 1.4rem;
     }

     h5 {
         font-size: 1.2rem;
     }

     h6 {
         font-size: 1rem;
     }

     p,
     span,
     a,
     button {
         font-size: 1rem;
     }

     .display-5 {
         font-size: 2rem !important;
     }

     .card-title {
         font-size: 1.125rem !important;
     }
 }

 @media (max-width: 767.98px) {
     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     h3 {
         font-size: 1.6rem;
     }

     h4 {
         font-size: 1.4rem;
     }

     h5 {
         font-size: 1.2rem;
     }

     h6 {
         font-size: 1rem;
     }

     p,
     span,
     a,
     button {
         font-size: 1rem;
         font-family: 'AlbulaPro';
     }

     .display-5 {
         font-size: 1.5rem !important;
     }

     .card-title {
         font-size: 0.875rem !important;
     }
 }

 body {
     padding-top: 70px;
 }

 .topbar {
     font-size: 0.7rem !important;
     background: #d9534f;
     letter-spacing: 0.01em;
     z-index: 2002;
     position: relative;
 }

 .topbar-info span {
     display: inline-flex;
     align-items: center;
     gap: 2px;
 }

 .topbar-lang .lang-btn {
     font-size: 0.7em;
     transition: background 0.2s, color 0.2s;
 }

 .topbar-lang .lang-btn.active,
 .topbar-lang .lang-btn:hover {
     background: #fff !important;
     color: #d9534f !important;
 }

 @media (max-width: 576px) {
     .topbar {
         font-size: 0.5rem;
         padding-left: 0.3rem;
         padding-right: 0.3rem;
     }

     .topbar-info {
         flex-direction: column;
         align-items: flex-start !important;
         gap: 0.2rem !important;
     }

     .topbar-lang {
         margin-top: 4px;
     }
 }





 header {
     background-color: #FFF7E6;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     transition: transform 0.3s ease-in-out;
     box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     height: 100px;
     font-family: 'AlbulaPro';
 }

 header.header-hidden {
     transform: translateY(-100%);
 }

 .hamburger {
     display: none;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: bold;
     color: #000;
 }

 .desktop-nav {
     display: flex;
     align-items: center;
 }

 /* Menu hover */
 .desktop-nav .nav-link {
     font-size: 0.8rem;
     padding: 0.5rem 0.8rem;
     color: #000;
     position: relative;
     margin: 0 2px;
     display: flex;
     align-items: center;
     font-weight: 500;
     height: 47px;
     line-height: 1;
     text-decoration: none;
 }

 .desktop-nav .nav-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: #ff0000;
     transition: width 0.4s ease-in-out;
 }

 .desktop-nav .nav-link:hover::after,
 .desktop-nav .nav-link.active::after {
     width: 100%;
 }

 .custom-nav-item {
     position: relative;
 }


 .custom-nav-item:hover>.custom-dropdown-menu {
     display: block;
     animation: fadeSlideDown 0.3s ease forwards;
 }

 .custom-dropdown-item {
     font-size: 0.8rem;
     padding: 10px 20px;
     color: #000;
     text-decoration: none;
     display: block;
     text-transform: uppercase;
     position: relative;
     border-bottom: 2px solid #C79451;
     transition: background-color 0.3s ease, padding-left 0.3s ease;
 }

 .custom-dropdown-item:hover {
     background-color: #f0e6d2;
     padding-left: 25px;
 }

 .custom-dropdown-item-item {
     position: relative;
 }

 .sub-dropdown-menu {
     display: none;
     position: absolute;
     top: 0;
     left: 100%;
     background-color: #FFF7E6;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     z-index: 1002;
     width: 250px;
     min-width: 250px;
     padding: 0;
     opacity: 0;
     transform: translateY(-10px);
     animation: none;
 }

 .custom-dropdown-item-item:hover>.sub-dropdown-menu {
     display: block;
     animation: fadeSlideDown 0.3s ease forwards;
 }

 .custom-nav-link {
     text-decoration: none;
     color: #000;
     cursor: pointer;
     display: flex;
     align-items: center;
     font-size: 0.8rem;
     font-weight: 500;
     height: 40px;
     padding: 0.5rem 0.8rem;
     position: relative;
     line-height: 1;
 }

 .custom-nav-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: #ff0000;
     transition: width 0.4s ease-in-out;
 }

 .custom-nav-link:hover::after,
 .custom-nav-link.active::after {
     width: 100%;
 }

 .custom-nav-link i {
     font-size: 0.8rem;
     margin-left: 5px;
     color: #000;
 }

 .custom-dropdown-menu {
     position: absolute;
     top: 109%;
     left: -30%;
     background-color: #FFF7E6;
     list-style: none;
     margin: 0;
     display: none;
     z-index: 1000;
     min-width: 250px !important;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transform: translateX(20px);
 }

 .custom-dropdown-item {
     padding: 10px 15px;
     text-decoration: none;
     color: #000;
     display: block;
     font-size: 0.8rem;
     font-weight: 500;
     transition: background-color 0.3s ease, padding-left 0.3s ease;
 }

 .custom-nav-item:hover .custom-dropdown-menu {
     display: block;
     animation: fadeSlideDown 0.3s ease forwards;
 }

 /* Dropdown cấp 2 */
 .custom-dropdown-menu-2 {
     display: none;
     position: absolute;
     top: 0%;
     left: 100%;
     background-color: #FFF7E6;
     border: 1px solid #ccc;
     list-style: none;
     padding: 0;
     margin: 0;
     z-index: 1000;
     min-width: 200px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     opacity: 0;
     transform: translateY(-10px);
     animation: none;
 }

 .custom-dropdown-menu li:hover>.custom-dropdown-menu-2 {
     display: block;
     animation: fadeSlideDown 0.3s ease forwards;
 }

 /* Optional: để menu cha không bị nhảy */
 .custom-nav-item,
 .custom-dropdown-menu li {
     position: relative;
 }

 .custom-dropdown-item i.bi-chevron-right,
 i.bi-chevron-down {
     color: #AA2233 !important;
     font-weight: bold !important;
     font-size: 16px !important;
 }

 /* Animation keyframes */
 @keyframes fadeSlideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* End menu hover */




 .desktop-nav .nav-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: #ff0000;
     transition: width 0.3s ease;
 }

 .desktop-nav .nav-link i {
     font-size: 1rem;
     color: #000;
     margin-right: 5px;
     line-height: 1;
 }



 /* search */
 .nav-item .search-icon {
     background: none;
     border: none;
     padding: 0;
     font-size: 1.2rem;
     cursor: pointer;
     color: inherit;
 }

 .search-box {
     position: absolute;
     top: 100%;
     right: 0;
     width: 400px;
     z-index: 1000;
     background-color: #fff;
     border: 1px solid #ddd;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .search-box .form-control {
     border: none;
     border-bottom: 2px solid #ff0000;
     border-radius: 0;
     padding: 0.5rem 0;
     font-size: 1rem;
 }

 .search-box .form-control:focus {
     box-shadow: none;
     border-bottom: 2px solid #ff0000;
 }

 .search-box .input-group-text {
     background: none;
     border: none;
     padding: 0.5rem;
 }

 .search-box .bi-search {
     color: #000;
     font-size: 1rem;
 }




 /* MENU điện thoại */
 .mobile-menu .nav-link {
     color: #000;
     font-size: 0.8rem;
     padding: 15px 20px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     position: relative;
     height: 50px;
     line-height: 1;
 }



 .mobile-menu .nav-link i {
     margin-right: 10px;
     font-size: 1rem;
     color: #000;
     line-height: 1;
 }

 .overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 999;
     display: none;
 }

 .overlay.show {
     display: block;
 }

 .mobile-menu.collapse,
 .mobile-menu {
     z-index: 2001 !important;
     position: fixed !important;
     top: 0;
     left: 0;
     width: 80vw;
     max-width: 320px;
     height: 100vh;
     background: #FFF7E6;
     box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
     overflow-y: auto;
 }


 /* Submenu ẩn mặc định */
 .mobile-menu .submenu {
     display: none;
     flex-direction: column;
     padding-left: 20px;
     background-color: #FFF7E6;

 }

 .submenu li a {
     text-decoration: none;
     color: #000000
 }

 /* Hiện submenu khi có class "show" */
 .mobile-menu .submenu.show {
     display: flex;
 }

 /* Mũi tên quay xuống khi mở submenu */
 .mobile-menu .submenu-toggle {
     margin-left: auto;
     transition: transform 0.3s ease;
 }

 .mobile-menu .submenu-toggle.rotate {
     transform: rotate(180deg);
 }

 @media (max-width: 767.98px) {
     .hamburger {
         display: block;
     }

     .desktop-nav {
         display: none;
     }

     .mobile-menu .nav-link {
         font-size: 0.7rem;
     }

     .logo {
         font-size: 1rem;
     }

     header {
         padding: 0.5rem 0;
         height: 70px;
     }

     .box-header {
         display: block !important;
         padding: 0 15px;
     }

 }

@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        font-size: 1rem;
    }

    .desktop-nav .nav-link {
        font-size: 0.6rem;
    }
    
    .desktop-nav .nav-item .nav-link.cart .position-relative > .cart-icon {
    display: none;
}

    .desktop-nav .nav-link.cart .cart-icon,
    .desktop-nav .nav-link.cart .text {
        display: none;
    }

    .desktop-nav .nav-link.home i,
    .desktop-nav .nav-link.cart i {
        margin-right: 0;
    }

    .mobile-menu,
    .hamburger {
        display: none;
    }
}

 @media (min-width: 992px) {
     .desktop-nav .nav-link {
         font-size: 0.8rem;
     }

     .desktop-nav .nav-link.home i,
     .desktop-nav .nav-link.cart i {
         display: none;
     }

     .desktop-nav .nav-link.home .text,
     .desktop-nav .nav-link.cart .text {
         font-size: 0.8rem;
     }
 }





 .footer-section a {
     text-decoration: none;
 }

 .footer-section a:hover {
     text-decoration: underline;
 }

 .logo img {
     max-height: 35px !important;
     width: auto;
     object-fit: contain;
     transition: max-height 0.3s ease;
 }

 @media (max-width: 1199px) {
     .logo img {
         max-height: 20px !important;
     }
 }

 @media (max-width: 767.98px) {
     .logo img {
         max-height: 17px !important;
     }
 }

 .topbar {
     font-size: 0.93rem;
     background: #d9534f;
     color: #fff;
     letter-spacing: 0.01em;
     z-index: 2002;
     position: relative;
     padding: 2px 0;
     min-height: 30px;
     margin: 0 !important;
     border-radius: 0;
 }

 .topbar .container {
     padding-left: 0.7rem;
     padding-right: 0.7rem;
     margin: 0 !important;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
 }

 .topbar-info {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     font-size: 0.97em;
     white-space: nowrap;
 }

 .topbar-info span {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     font-size: 0.97em;
 }

 .topbar-info i {
     font-size: 1.1em;
     color: #fff;
     margin-right: 2px;
 }

 .topbar-lang {
     display: flex;
     align-items: center;
     gap: 0.3rem;
 }

 .topbar-lang .lang-btn {
     font-size: 0.95em;
     transition: background 0.2s, color 0.2s, box-shadow 0.2s;
     padding: 2px 16px;
     height: 26px;
     line-height: 1;
     font-weight: 600;
     border-radius: 16px;
     border: 1.5px solid #fff;
     background: transparent;
     color: #fff;
     box-shadow: none;
 }

 .topbar-lang .lang-btn.active,
 .topbar-lang .lang-btn:hover {
     background: #fff !important;
     color: #d9534f !important;
     box-shadow: 0 1px 6px rgba(217, 83, 79, 0.08);
 }

 .topbar-lang .lang-btn:not(.active) {
     background: transparent;
     color: #fff;
 }

 .topbar-lang .lang-btn:not(.active):hover {
     background: #fff !important;
     color: #d9534f !important;
 }

 .topbar-lang .bi-globe2 {
     font-size: 1.1em;
     margin-right: 2px;
     color: #fff;
 }

 @media (max-width: 768px) {
     .topbar {
         font-size: 0.8rem;
         padding: 2px 0;
         min-height: 26px;
     }

     .topbar .container {
         flex-direction: column;
         align-items: flex-start;
         gap: 2px;
         padding-left: 0.3rem;
         padding-right: 0.3rem;
     }

     .topbar-info {
         flex-direction: column;
         align-items: flex-start;
         gap: 0.2rem;
         font-size: 0.9em;
     }

     .topbar-lang {
         margin-top: 2px;
         gap: 0.2rem;
     }

     .topbar-lang .lang-btn {
         padding: 2px 10px;
         height: 22px;
         font-size: 0.85em;
     }
 }

 @media (max-width: 767.98px) {
     .topbar {
         display: none !important;
     }
 }

 .mobile-topbar-info {
     background: #fff5f5;
     border-radius: 0 0 10px 10px;
     margin-bottom: 8px;
 }

 .mobile-topbar-info .lang-btn.active,
 .mobile-topbar-info .lang-btn:hover {
     background: #d9534f !important;
     color: #fff !important;
 }

 .mobile-topbar-info .lang-btn {
     color: #d9534f;
     border: 1px solid #d9534f;
     background: #fff;
     font-size: 0.95em;
     font-weight: 600;
     padding: 2px 14px;
     border-radius: 16px;
     transition: background 0.2s, color 0.2s;
 }

 .footer-section {
     background-color: #AA2233;
     color: #fdf5e6;
     padding: 40px 20px;
 }

 .footer-section h5 {
     font-size: 1.2rem;
     font-weight: bold;
     margin-bottom: 15px;
 }

 .footer-section p {
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 10px;
 }

 .footer-section a {
     color: #fdf5e6;
     font-size: 0.9rem;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section a:hover {
     color: #fff;
     text-decoration: underline;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #fdf5e6;
     color: #AA2233;
     font-size: 1.2rem;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease, color 0.3s ease;
     margin: 0 auto;
 }

 .social-icon:hover {
     background-color: #AA2233;
     color: #fdf5e6;
 }

 .footer-social-media {
     justify-content: end;
 }

 @media (max-width: 768px) {
     .footer-section {
         text-align: center;
     }

     .footer-section .row {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .footer-section .col-lg-4 {
         margin-bottom: 20px;
     }

     .social-icon {
         width: 35px;
         height: 35px;
         font-size: 1rem;
         margin: 10px auto;
     }

     .footer-section .d-flex.gap-3 {
         justify-content: center;
     }

     .footer-social-media {
         justify-content: center;
     }
 }

 @media (max-width: 576px) {
     .footer-section h5 {
         font-size: 1rem;
     }

     .footer-section p,
     .footer-section a {
         font-size: 0.8rem;
     }

     .social-icon {
         width: 30px;
         height: 30px;
         font-size: 0.9rem;
     }

     .footer-social-media {
         justify-content: center;
     }
 }












 /* Style Loader */
 /* Loader full màn hình */
 #loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #fdf5e6;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Logo nằm giữa vòng xoay */
 .spinner {
     position: relative;
     width: 120px;
     height: 120px;
 }

 .spinner::before {
     content: "";
     box-sizing: border-box;
     position: absolute;
     top: 0;
     left: 0;
     width: 120px;
     height: 120px;
     border: 4px solid #ddd;
     border-top-color: #AA2233;
     border-radius: 50%;
     animation: spin 1.2s linear infinite;
 }

 .logo-loader {
     width: 60px;
     height: 60px;
     position: absolute;
     top: 30px;
     left: 30px;
 }

 /* Quay vòng */
 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }





 /* Full màn hình loader */
#homepage-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fdf5e6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Logo lật */
.logo-flip img {
  width: 400px;
  animation: flipLogo 1s infinite;
  transform-style: preserve-3d;
}

/* Animation lật */
@keyframes flipLogo {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}


/* Anh Phong */
.core-value-img-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 1rem; /* rounded-4 */
    /* box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15); Bootstrap-like shadow */
    position: relative;
    transition: transform 0.3s ease;
    
  }

.core-value-img-wrapper:hover {
    transform: scale(1.02);
  }

.core-value-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
    transition: filter 0.3s ease;
  }

.core-value-img-wrapper:hover img {
    filter: brightness(100%);
  }

.core-value-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 1rem;
  }

.value-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box>h5{
  color: #AA2233;  
  font-size: 30px; 
  font-weight: 500; 
  font-family: 'Newsreader';
  line-height: 1.2;
}

.value-box>p{
  font-size: 14px;
  font-family: 'Albula Pro';
}

.background-overlay{
        position: absolute;
        top: 1568px;
        left: -10.07px;
        width: 1575.8px;
        height: 1137.93px;
        background-image: url('./client/assets/Image/background/bg-1.png'); /* chỉnh lại đường dẫn */
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.4;
        transform: rotate(2.66deg);
        pointer-events: none; /* không ảnh hưởng đến thao tác chuột */
        z-index: 0; /* đảm bảo nằm dưới */
}

.title-heading-core-value p,
.title-heading-core-value span {
  line-height: 0.9 !important;;
  font-size: 70px;
  color: #AA2233;
  font-family: 'Newsreader';
  margin: 0; /* loại bỏ khoảng trắng mặc định */
}

   .title-cooperate {
      font-family: 'Newsreader';
      font-style: normal;
      font-weight: 600;
      font-size: 75px;
      color: #AA2233;
    }

 .wagyu-container{
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
   .Wagyu-img {
        display: block;        /* ✅ cần thiết để ảnh được căn giữa */
          margin: 0 auto;        /* ✅ căn giữa theo chiều ngang */
          width: 100%;
          height: auto;
          object-fit: contain;
          margin-bottom: 20px;
    }
    .img-wagyu {
        width: 944px;
        height: 531px;
        margin: 0 auto 80px auto;
        background-color: #f0f0f0; /* tùy chọn, giúp thấy rõ khung */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center; 
    }
    .wagyu-title {
        position: absolute;
        top: -70px; /* Điều chỉnh để căn chính xác vị trí chữ */
        left: 50%;
        transform: translateX(-50%);
        font-size: 90px;
        color: #AA2233;
        font-family: 'Newsreader', serif;
        text-align: center;
        z-index: 1;
        font-weight: 700;
    }
    .wagyu-title-2 {
        position: absolute;
        top: 500px; /* Điều chỉnh để căn chính xác vị trí chữ */
        left: 50%;
        transform: translateX(-50%);
        font-size: 55px;
        color: #AA2233;
        font-family: 'Newsreader', serif;
        text-align: center;
        z-index: 1;
    }

    .text-title-core{
      font-family: 'NewsreaderSemiBold';
      font-size: 39px;
    }

       .fizz-title {
      font-family: 'Newsreader', serif;
      font-size: 90px;
      color: #AA2233;
      line-height: 1;
    
    }

    .fizz-text {
      font-family: 'NewsreaderMedium', serif;
      font-size: 55px;
      color: #AA2233;
      font-weight: 500;
      line-height: 0.8;
    }

    .img-discount{ 
      height: 500px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .img-discount-list{
        width: 150px;           /* Hoặc bạn có thể dùng % như 100% tùy layout */
        height: 100px;          /* Chiều cao thấp hơn để phù hợp với slide nhỏ */
        object-fit: cover;      /* Giữ tỉ lệ và cắt ảnh cho đẹp */
        margin-bottom: 10px;    /* Giảm khoảng cách */
        border-radius: 8px;     /* Làm ảnh bo tròn nhẹ nếu muốn thẩm mỹ hơn */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Hiệu ứng nhẹ nếu cần */
    }

    .btn-discount{
      background-color: #AA2233;
      border: 1px solid #AA2233;
      text-decoration: none;
      color: white;
      padding: 10px 20px;
      font-family: 'Albula ProBold';
      font-size: 25px;
      margin: 10px 0px;
    }
    
    /* Phân trang */

    /* Phân trang */
 .simple-pagination {
     display: flex;
     list-style: none;
     padding-left: 0;
     gap: 12px;
     justify-content: center;
 }

 .simple-pagination li {
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     border: 2px solid #AA2233;
     color: #AA2233;
     font-weight: bold;
     font-size: 18px;
     border-radius: 2px;
 }

 .simple-pagination li a {
     color: inherit;
     text-decoration: none;
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .simple-pagination li.active {
     background-color: #AA2233;
     color: white;
     border: none;
 }

 .simple-pagination li.disabled {
     opacity: 0.5;
     pointer-events: none;
     border: 2px solid #ccc;
     color: #ccc;
 }
 
 .text-hero-section{
    font-size: 51px;
}

  /*Thông báo copy*/
.copy-message {
    margin-top: 5px;
    color: green;
    font-size: 0.9rem;
    animation: fadeInOut 2s ease;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-5px); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-5px); }
}

