.woocommerce-variation-availability {
    display: none;
}
.woocommerce-variation-price {
    display: none;
}
/* Container bọc bên ngoài để làm mốc cho loading */
.honox-branch-display-root {
    position: relative;
    min-height: 50px;
    transition: all 0.3s ease;
}

/* Hiệu ứng mờ khi đang tải */
.honox-branch-display-root.is-loading {
    opacity: 0.5;
    pointer-events: none; /* Ngăn khách click khi đang load */
}

/* Tạo vòng xoay bằng CSS */
.honox-branch-display-root.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #27ae60;
    border-radius: 50%;
    animation: honox-spin 0.5s linear infinite;
    z-index: 10;
}
.product-info p.stock {
    display: none !important;
}
@keyframes honox-spin {
    to { transform: rotate(360deg); }
}