section:nth-child(odd) {
    /* background: var(--p100-clr) !important; */
}

.fancybox__content {
    padding: 0;
 }
.search-adjust {
    display: flex;
    align-items: center;
    gap: 16px;
}
.search-adjust .search-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(42, 185, 57, .16);
}
.search-adjust .search-trigger i {
    color: #fff;
}
.search-adjust .cart-trigger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(42, 185, 57, .16);
}
.search-adjust .cart-trigger i {
  color: #fff;
}
/* Hover, Focus, Active, Open */
.form-checkout-item .nice-select:active,
.form-checkout-item .nice-select.open,
.form-checkout-item .nice-select:hover,
.form-checkout-item .nice-select:focus,
.form-checkout-item .nice-select.open:after {
    border-color: var(--p2-clr) !important;
    box-shadow: none;
}

/* Select mặc định */
.form-checkout-item .nice-select {
    border: 2px solid #E9E9E9;
    padding: 12px;
    width: 100%;
    color: var(--p900-clr);
    font-size: 13px;
    margin-bottom: 30px;
    height: auto;
    line-height: unset;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}



/* Mũi tên */
.form-checkout-item .nice-select:after {
    border-color: #E9E9E9;
}

/* Danh sách dropdown */
.form-checkout-item .nice-select .list {
    background-color: var(--p900-clr);
    min-width: 250px;
    color: #fff;
    border-radius: 5px;
    padding: 0;
}

/* Option trong dropdown */
.form-checkout-item .nice-select .option {
    color: #fff;
    padding: 0;
    margin: 0 20px;
    font-size: 13px;
    line-height: 50px;
    border-bottom: 1px solid rgba(155, 155, 155, 0.3);
    font-weight: 400;
    text-transform: capitalize;
    display: block;
}

/* Option cuối bỏ border */
.form-checkout-item .nice-select .option:last-of-type {
    border-bottom: 0;
}

/* Hover, focus, selected option */
.form-checkout-item .nice-select .option:hover,
.form-checkout-item .nice-select .option.focus,
.form-checkout-item .nice-select .option.selected.focus {
    background-color: transparent;
    color: var(--p2-clr) !important;
}

.form-checkout-item input[type="text"], .form-checkout-item input[type="email"], .form-checkout-item textarea {
    border: 2px solid #E9E9E9;
    padding: 12px;
    width: 100%;
    color: var(--p900-clr);
    font-size: 13px;
    margin-bottom: 30px;
    height: auto;
    line-height: unset;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    font-family: Montserrat, sans-serif;
    box-sizing: border-box;
}
.form-checkout-item .nice-select .current, .form-checkout-item input[type="text"]::placeholder, .form-checkout-item input[type="email"]::placeholder, .form-checkout-item textarea::placeholder{
    font-family: Montserrat, sans-serif;
    font-weight: normal;
    color: var(--p700-clr);
    font-size: 15px;
    
}
.form-checkout-item.cmn-btn{
    border-radius: 0;
}

/* Hover, Focus */
.form-checkout-item input[type="text"]:hover,
.form-checkout-item input[type="email"]:hover,
.form-checkout-item textarea:hover,
.form-checkout-item input[type="text"]:focus,
.form-checkout-item input[type="email"]:focus,
.form-checkout-item textarea:focus {
    border-color: var(--p2-clr) !important;
    outline: none;
    box-shadow: none;
}


.pagination .page-link {
    background: var(--p100-clr);
    color: var(--p1-clr);
    border: none;
    margin: 0 6px;
    border-radius: 8px;
    padding: 8px 18.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: var(--p1-clr);
    color: #fff;
}

.pagination .active .page-link {
    background: var(--p1-clr);
    color: #fff;
}

.pagination svg {
    width: 16px;
    height: 28px;
}
.page-link:focus{
    box-shadow: unset;
}
.blog-post-details .explore-details-content p{
    margin-bottom: 30px;
}
.blog-post-details .explore-details-content img{
    border-radius: 20px;
    /* width: 100%; */
    margin: 0 auto 0 auto;
    display: block;

}

.maybe-liking h3 {
    color: var(--p900-clr);
}

.swiper-all .slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.swiper-all .slick-list {
    /* margin: 0 -10px; */
}



/* ===== List Style ===== */
.blog-post-details .explore-details-content ul,
.blog-post-details .explore-details-content ol {
    margin: 0 0 26px 20px;
    padding: 0;
}

.blog-post-details .explore-details-content ul li,
.blog-post-details .explore-details-content ol li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--p800-clr);
    margin-bottom: 8px;
    position: relative;
}

/* Style dấu đầu dòng ul */
.blog-post-details .explore-details-content ul li {
    list-style: none;
    padding-left: 24px;
}

.blog-post-details .explore-details-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--p1-clr);
    font-size: 18px;
    line-height: 1.6;
}

/* ol giữ số mặc định */
.blog-post-details .explore-details-content ol li {
    list-style: decimal;
}

/* Responsive list font size */
@media(max-width:575px) {
    .blog-post-details .explore-details-content ul li,
    .blog-post-details .explore-details-content ol li {
        font-size: 14px;
    }
}

/* ===== Table Style ===== */
.blog-post-details .explore-details-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 26px;
    border: 1px solid var(--p200-clr);
    font-size: 16px;
    color: var(--p800-clr);
}

.blog-post-details .explore-details-content table th,
.blog-post-details .explore-details-content table td {
    padding: 12px 16px;
    border: 1px solid var(--p200-clr);
    text-align: left;
}

.blog-post-details .explore-details-content table th {
    background: var(--p100-clr);
    font-weight: 600;
    color: var(--p900-clr);
}

.blog-post-details .explore-details-content table tr:nth-child(even) {
    background: var(--p50-clr, #fafafa); /* fallback nếu p50 chưa có */
}

/* Responsive table */
@media(max-width:575px) {
    .blog-post-details .explore-details-content table {
        font-size: 14px;
    }
    .blog-post-details .explore-details-content table th,
    .blog-post-details .explore-details-content table td {
        padding: 8px 10px;
    }
}


/* Ẩn mặc định */
#themeToast {
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    background-color: var(--p1-clr);
    color: var(--white-clr);
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: Montserrat, sans-serif;

}

#themeToast.show {
    transform: translateY(0);
    opacity: 1;
    top: 100px;
    right: 10px;
}
.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1; /* đảm bảo không bị mờ */
}
#themeToast .toast-body{
    padding: 10px 20px;
}





/* ========== CART PAGE ========== */
/* === Cart Page === */
.cart-page {
    font-family: Montserrat, sans-serif;
  }
  
  .cart-page .card {
    background: var(--white-clr);
    border: 1px solid var(--p200-clr);
    border-radius: 12px;
    padding: 20px;
  }
  
  .cart-page .cart-table thead th {
    font-size: 16px;
    font-weight: 600;
    color: var(--p900-clr);
    border-bottom: 2px solid var(--p200-clr);
    padding: 12px 8px;
  }
  
  .cart-page .cart-table td {
    vertical-align: middle;
    padding: 12px 8px;
    border-bottom: 1px solid var(--p100-clr);
  }
  
  /* Product thumbnail */
  .cart-page .product-thumb .image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }
  
  .cart-page .product-meta .product-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--p900-clr);
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
  }
  
  .cart-page .product-meta .sku {
    font-size: 13px;
    color: var(--p600-clr);
  }
  
  /* Giá */
  .cart-page .price {
    font-weight: 500;
    color: var(--p900-clr);
  }
  
  /* Quantity box */
  .cart-page .qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--p200-clr);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
  }
  
  .cart-page .qty-btn {
    background: var(--p100-clr);
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--p900-clr);
    font-size: 14px;
  }
  
  .cart-page .qty-input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 4px;
  }
  
  .cart-page .qty-btn:hover {
    background: var(--p1-clr);
    color: var(--white-clr);
  }
  
  /* Thành tiền */
  .cart-page .subtotal {
    font-size: 15px;
    font-weight: 600;
    color: var(--p900-clr);
  }
  
  /* Xóa sản phẩm */
  .cart-page .icon-btn {
    background: var(--p100-clr);
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
  }
  
  .cart-page .icon-btn.danger {
    color: var(--danger-clr, #d9534f);
  }
  
  .cart-page .icon-btn:hover {
    background: var(--danger-clr, #d9534f);
    color: var(--white-clr);
  }
  
  /* Footbar */
  .cart-page .footbar {
    margin-top: 20px;
    gap: 12px;
  }
  

  .cart-page .footbar .totals {
    font-size: 16px;
    font-weight: 500;
    color: var(--p900-clr);
  }
  
  .cart-page .total-amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--p1-clr);
    margin-left: 6px;
  }
  
  /* Form info */
  .cart-page .form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .cart-page .form-group label {
    /* font-weight: 500; */
    font-size: 14px;
    color: var(--p900-clr);
  }
  
  
  /* Button thanh toán */
  .cart-page .btn.brand {
    background: var(--p1-clr);
    color: var(--white-clr);
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    font-size: 16px;
  }
  
  .cart-page .btn.brand:hover {
    opacity: 0.9;
  }
  
  /* Responsive */
  @media (max-width: 767px) {
    .cart-page .cart-table thead {
      display: none;
    }
    .cart-page .cart-table tr {
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid var(--p100-clr);
      padding: 10px 0;
    }
  }
  
  
  @media (max-width: 992px) {

  .header-landingpage{
    position: relative;
    background: var(--box-clr);
    padding: 10px 0;
  }
}