/* General */
:root {
    --container-width: 1400px;
    --grid-gap: 20px;
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}
.\!font-\[400\] {
    font-weight: 400 !important;
  }
/* Header */
.header {
    border-bottom: solid #eceff4 1px;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
}
.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--grid-gap);
    grid-gap:50px;
    align-items: end;
}
.logo {
    display: block;
}

.logo-link {
    display: inline-block;
}

.logo svg {
    display: block;
    height: auto;
}
.header-right {
    display: grid;
    grid-template-columns: 150px auto; /* Cố định width cho search-mini */
    gap: 15px;
    align-items: center;
}
/*menu chính ngang*/
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    text-decoration: none;
    display: block;
    color: #333;
}

@media (min-width: 769px) {
    /* Menu chính ngang */
    .menu-toggle {
    display: none; /* Ẩn mặc định trên desktop */
}
    .main-menu ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 30px;
    }
 
    /* Style cho menu items */
    .main-menu {
        position: relative;
    }
 
    .main-menu ul li {
        position: static;
    }
 
    .main-menu ul li a {
        color: #333;
        text-decoration: none;
        padding: 10px 0;
        display: block;
        position: relative;
      font-weight: 500;
    }
 
    /* Hiệu ứng gạch chân khi hover */
    .main-menu ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #333;
        transition: width 0.3s;
    }
 
    .main-menu ul li:hover > a::after {
        width: 100%;
    }
 
    /* Menu con */
    .main-menu ul ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; /* Thay đổi từ 50% thành 0 */
        background: white;
        width: 100vw;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        margin: 0 -1000em;
        padding: 0.5em 1000em;
    }
 
    /* Hiển thị menu con khi hover */
    .main-menu ul li:hover > ul {
        display: block;
    }
 
    /* Layout submenu container */
    .submenu-container {
        max-width: var(--container-width);
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
 
    /* Phần menu bên trái */
    .submenu-left {
        padding-right: 30px;
        border-right: 1px solid #eee;
    }
 
    .submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
 
    .submenu-list li {
        padding: 8px 0;
    }
 
    .submenu-list a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
    }
 
    .submenu-list a:hover {
        color: #f90303;
    }
 
    /* Phần ảnh bên phải */
    .submenu-right {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
 
    .menu-feature-image {
        max-width: 100%;
        height: auto;
        display: block;
    }
 }
 .latest-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
@media (max-width: 992px) {
    .latest-products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .latest-products {
        grid-template-columns: 1fr;
    }
}
.product-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.product-title, .cart-product-name {
    margin: 0px;
    text-decoration: none;
    overflow: hidden;
    height: 1.8em;
    font-weight: 400;
    color:#1c2430;
    font-weight: 600;
    font-size: 1rem !important;
    line-height: 1.375rem !important;
}
.product-price {
    font-size: 1.3em;
    color: #1c2430;
    font-weight: 600;
    margin: 8px 0;
}
.regular-price.has-sale {
    text-decoration: line-through;
    color: #999;
    font-size: 1em;
}
.sale-price {
    color: #e44;
    margin-left: 10px;
}
       /* Thêm vào phần CSS hiện có */
.product-link {
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.product-link:hover {
color: #007bff;
}
.product-card a {
text-decoration: none;
}
.product-image {
transition: opacity 0.3s ease;
}
.product-image:hover {
opacity: 0.9;
}
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
    margin: 10px 0;
}
.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: border-color 0.3s;
}
.color-option:hover {
    border-color: #333;
}

/* Menu Toggle Button - ẩn mặc định trên desktop */
.menu-toggle {
    display: none;
}

/* Mobile Menu - ẩn mặc định trên desktop */
.mobile-menu-wrapper {
    display: none;
}

.menu-overlay {
    display: none;
}

/* CSS cho mobile */
@media (max-width: 768px) {
    /* Ẩn menu desktop */
    .main-menu ul.nav {
        display: none;
    }

    /* Hiện menu toggle */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        cursor: pointer;
    }

    .menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    /* Style grid của header */
    .header-grid {
        grid-template-columns: auto auto auto;
        gap: 10px;
    }

    /* Mobile Menu Wrapper */
    .mobile-menu-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: block;
    }

    .mobile-menu-wrapper.active {
        left: 0;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
        /* Overlay - chỉ hiện khi cần */
        .menu-overlay.active {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

    /* Mobile Menu Items */
    .mobile-menu {
        padding: 20px 0;
    }

    .mobile-menu li {
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
    }

    /* Submenu Arrow */
    .mobile-menu .parent > a::after {
        content: ">";
        position: absolute;
        right: 20px;
        transform: rotate(90deg);
        transition: transform 0.3s;
    }

    .mobile-menu .parent.active > a::after {
        transform: rotate(-90deg);
    }

    /* Submenu */
    .mobile-menu ul {
        display: none;
        background: #f8f8f8;
    }

    .mobile-menu .active > ul {
        display: block;
    }

    /* Close Button */
    .mobile-menu-close {
        padding: 20px;
        text-align: right;
        font-size: 40px;
        cursor: pointer;
        justify-self: end;
        border-bottom: 1px solid #eee;
    }
}
/* Khung tìm kiếm ban đầu */
.search-mini {
    position: relative;
    width: 100%;
  margin-bottom:5px;
}

.search-mini input {
    width: 75%;
    padding: 8px 15px 8px 35px; /* Thêm padding trái cho icon */
    border-radius: 20px;
    border: 1px solid #eee;
    background: #f8f8f8;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Popup tìm kiếm */
/* Popup search styles */
.search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 9999;
 }
 
 .search-popup.active {
    display: flex;
    align-items: center;
 }
 
 .search-popup-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(300px, 500px) auto;
    align-items: center;
    gap: 20px;
 }
 
 .search-popup .logo {
    justify-self: start;
 }
 
 .search-popup .logo svg {
    width: 90px;
    height: auto;
 }
 
 .search-popup form {
    position: relative;
    width: 100%;
 }
 
 .search-popup .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
 }
 
 .search-popup input {
    width: 100%;
    padding: 12px 20px 12px 45px; /* Tăng padding bên trái để chứa icon */
    font-size: 14px;
    border-radius: 25px;
    border: 1px solid #eee;
    background: #f8f8f8;
    min-width: 400px; /* Đảm bảo độ rộng tối thiểu */
 }
 
 .search-popup .close-btn {
    position: relative;
    font-size: 40px;
    cursor: pointer;
    justify-self: end;
 }
   .category-image {
      width: 100%;
      height: 596px;
      object-fit: cover;
   }
   
   .product-container {
      overflow: hidden;
      position: relative;
      padding-top: 20px;
   }
   
   .product-wrapper {
    display: flex; // Thay đổi từ grid sang flex
    transition: transform 0.3s;
   }
   
   .product-slide {
    min-width: 100%; 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
   }
   
   .navigation {
      position: absolute;
      top: 0;
      right: 0;
      display: flex;
      gap: 10px;
   }
   
   .nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #ddd;
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index:1000;
   }
   div.recent h2 {
    font-size: 1.875rem;
    line-height: 2.375rem;
    color: #1c2430;
   }
   .easy-checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
   }
   .easy-checkout-row td {
    vertical-align: top;
   }
   .j2store-cart-table th {
    text-align: left;
   }
   #country_id_chosen, #zone_id_chosen {
    width: 100% !important;
   }
   td.thumb-image {
    padding:5px
   }
   td.thumb-image img {
    max-width: 100%;
    height: auto;
   }
   @media (max-width: 992px) {
      .category-showcase {
          grid-template-columns: 1fr;
      }
      .product-wrapper {
          grid-template-columns: repeat(2, 100%);
      }
      .product-slide {
       grid-template-columns: repeat(2, 1fr);
      }
   }
   
   @media (max-width: 576px) {
      .product-wrapper {
          grid-template-columns: 100%;
      }
      .product-slide {
              grid-template-columns: repeat(2, 1fr);
      }
   }
 @media (max-width: 768px) {
    /* Điều chỉnh grid columns */
    .header-right {
        grid-template-columns: auto auto;
        gap: 10px;
    }
 
    /* Ẩn input, chỉ hiện icon */
    .search-mini {
        width: auto;
    }
 
    .search-mini input {
        display: none;
    }
 
    .search-icon {
        position: static;
        transform: none;
        width: 20px;
        height: 20px;
        padding: 8px;
        cursor: pointer;
        pointer-events: auto;
    }
 }
 /* Responsive */
 @media (max-width: 768px) {
    .search-popup-content {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }
 
    .search-popup .logo {
        display: none;
    }
 
    .search-popup input {
        font-size: 16px;
        padding: 10px 15px;
    }
 
    .search-popup .close-btn {
        font-size: 20px;
    }
 }
 .product-detail-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.product-images {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
}

.thumbnail-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  max-height: 600px;
  overflow-y: auto;
  padding: 5px;
}

.thumbnail {
    width: 80px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    
}

.thumbnail:hover, .thumbnail.active {
    border-color: #333;
}

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

.product-info {
    padding: 5px 0;
}


.product-description {
    margin: 20px 0;
}
.cart-footer {
    width:100%;
}
.cart-footer th {
    text-align: left;
}
@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        grid-template-columns: 60px 1fr;
    }
    
    .thumbnail {
        width: 60px;
        height: 80px;
    }
    
    .main-image {
        height: 400px;
    }
}
    .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 40px;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.cursor-zoom {
    cursor: zoom-in;
}
.lightbox-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
}
    .lightbox-nav,
.lightbox-close {
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .lightbox-nav:hover,
.lightbox-close:hover {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-close {
        top: -20px;
        right: -20px;
    }
    
    .lightbox-nav {
        font-size: 20px;
    }
}
 .cart-icon {
    padding: 8px;
}

.cart-icon svg {
    transition: color 0.3s;
}

.cart-icon:hover svg {
    opacity: 0.7;
}
.breadcrumb-wrapper {
    margin-bottom: 20px;
}
ol.breadcrumb {
    padding-left: 0px;
}
div.j2store-cart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.buttons-right {
    text-align: center;
    border-top:1px solid #ccc;
    margin-top: 10px;
}
.checkout-btn {
    border: none;
    width: 100%;
    background: none;
}
.checkout-btn a {
    width:75%;
    margin-top: 1rem;
    border-top:0px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 3px solid;
    border-color: #ca8c12;
    background-color: #fcaf17;
    color: #1c2430;
    min-height: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: .75rem;
        outline: 2px solid transparent;
        outline-offset: 2px;
}
.checkout-btn a:hover {
background-color: #fdc75d;
color: #2a2a86;
}
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}
.media-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
 }
 
 .media-container a {
    display: block;
    width: 100%;
    height: 100%;
 }
 
 .media-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
 }
 
 .media-container img:hover {
    transform: scale(1.05);
 }
 
 @media (max-width: 768px) {
    .media-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .media-container img {
        max-height: 300px;
    }
 }
 h3.module-title {
    font-size: 1.875rem;
    line-height: 2.375rem;
    text-align: center;
    margin: 10px 0;
 }
/* Home Page */
.slider-section {
    margin-bottom: 30px;
}

.tabs-section {
    margin-bottom: 40px;
}

.category-products {
    margin-bottom: 40px;
}

/* Category Page */
.category-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--grid-gap);
    margin: 30px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}
.option-title-wrapper {
    margin-bottom: 10px;
}
div.j2store-add-to-cart {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 1fr 2fr;
}
.product-qty {
    flex: 1;
}
.product-qty input[type="number"] {
    border-radius: 20px; /* Adjust the value to control roundness */
    text-align: center; /* Centers the number inside the input */
    appearance: none; /* Removes default browser styling */
    -moz-appearance: none;
    -webkit-appearance: none;
    padding:0.8rem 0;
    width: 100%;
    border: solid 1px #cfd7e3;
}
.j2store-cart-button {
    font-weight: 600;
    border-radius: 20px;
    padding: 0.8rem 0;
    align-self: end;
    cursor: pointer;
    border-width: 1.5px;
    border-color: #1c2430;
    color: #1c2430;
}
.j2store-cart-button:hover {
  background-color: #f9fafb;
}
.policy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    padding: 1rem 0;
}

.policy-item {
    display: grid;
    grid-template-columns: 20px auto;
    gap: 12px;
}

.policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-icon svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.policy-content {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 10px;
}

.policy-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.policy-description {
    font-size: 14px;
    color: #666;
}
/* Optional: Remove number input arrows in different browsers */
.product-qty input[type="number"]::-webkit-inner-spin-button,
.product-qty input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-qty input[type="number"] {
    -moz-appearance: textfield; /* Removes arrows in Firefox */
}

/* size guide popup*/
.size-guide-link {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
    margin-left: auto;
}

.size-guide-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.size-guide-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
}

.size-guide-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.close-button {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background: #555;
}
/* Footer */
.footer {
    background-color: #1c2430;
    padding: 10px;
}
.pr-3 {
    padding-right: 10px;
    float: left;
}
.footer svg{
    width: 1.95rem;
    height: auto;
    color: #bfcad9;
}
.pb-3 {
  display: flex;
  align-items: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: column; /* Items sẽ xếp theo cột */
    gap: 30px;
    padding: 40px 0;
    color:#fff;
}

/* Cột 1 và 3 chiếm 2 dòng */
._ftcol1, ._ftcol3 {
    grid-row: span 2;
}

/* Cột 2 mỗi div một dòng */
._ftcol2 {
    grid-row: span 1;
    max-width: 17.625rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row; /* Chuyển về xếp theo hàng trên mobile */
        gap: 20px;
    }
    
    .ftcol1, .ftcol2, .ftcol3 {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    ._ftcol1, ._ftcol2, ._ftcol3 {
        grid-column: 1;
        grid-row: auto;
    }
}
.footer h3{
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 600 !important;
    color: #fff;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer a {
padding-top: 0.75rem;
font-size: .95rem;
line-height: 2rem;
color: #bfcad9;
text-decoration: none;
  }
  .footer a:hover {
    color: #fff;
  }
  .footer_2 {
  background-color: #1c2430;
  padding-bottom: 20px;
  color: #fff;
  border-top: solid 1px #fff;
  }
/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-grid {
        grid-template-columns: 150px 1fr auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-grid {
        display: grid;
        grid-template-columns: auto auto auto; /* 3 cột tự động theo nội dung */
        grid-template-areas: "menu logo right";
        align-items: center;
        gap: 15px;
    }

    .logo {
        grid-area: logo;
        width: 100%;
        text-align: center;
        justify-self: center; /* Thêm vào */
        margin: 0 auto; /* Thêm vào */
    }

    .logo-link {
        display: inline-block;
        margin: 0 auto; 
    }

    .main-menu {
        grid-area: menu;
        justify-self: start;
    }

    .header-right {
        grid-area: right;
        justify-self: end;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
.result__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.result__image {
  flex-shrink: 0;
  width: 300px;
}

.result__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.result__content {
  flex-grow: 1;
}

.result__title {
  font-weight: bold;
  margin: 0;
  color: #333;
}

.result__title a {
  text-decoration: none;
  color: #0056b3;
}

.result__description {
  margin: 6px 0 0;
  color: #555;
  line-height: 1.5;
}
/* Ẩn dấu chấm đầu dòng */
.pagination {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-item {
  display: inline-block;
}

.page-item a,
.page-item span {
  display: block;
  padding: 6px 12px;
  color: #007bff;
  text-decoration: none;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
}

.page-item a:hover {
  background-color: #e9ecef;
  text-decoration: none;
}

.page-item.disabled span {
  color: #6c757d;
  background-color: #f8f9fa;
  cursor: not-allowed;
}

.page-item.active span {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.j2store-checkout-link {
  display: inline-block;
  background-color: #ff4081;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.j2store-checkout-link:hover {
  background-color: #e73370;
}

.j2store-checkout-link::before {
  content: "🛒 ";
  margin-right: 6px;
}