@keyframes swipeHint {
    0%   { transform: translateX(0); opacity: 0.6; }
    50%  { transform: translateX(6px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.6; }
}
.woocommerce-Tabs-panel.commercekit-Tabs-panel--description table caption {
    text-align: left;
    margin-bottom: 10px;
}
@media (max-width: 1200px){

.woocommerce-Tabs-panel.commercekit-Tabs-panel--description .wp-block-table,
.woocommerce-Tabs-panel--description .wp-block-table {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 40px;
}

.woocommerce-Tabs-panel.commercekit-Tabs-panel--description table,
.woocommerce-Tabs-panel--description table {
    width: 100%;
    min-width: 768px;
    border-collapse: collapse;
}

/* CLEAN – no forced borders */
.woocommerce-Tabs-panel.commercekit-Tabs-panel--description th,
.woocommerce-Tabs-panel.commercekit-Tabs-panel--description td,
.woocommerce-Tabs-panel--description th,
.woocommerce-Tabs-panel--description td {
    padding: 12px;
    white-space: nowrap;
    font-size: 14px;
}

.woocommerce-Tabs-panel.commercekit-Tabs-panel--description .wp-block-table::before,
.woocommerce-Tabs-panel--description .wp-block-table::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 10px;
    width: 70px;
    height: 30px;

    background: url('/wp-content/uploads/2026/04/product-table-swipe.webp') no-repeat center;
    background-size: contain;

    opacity: 0.95;
    z-index: 9999;
    pointer-events: none;

    /* FIX ANIMATION */
    transform: translateX(0);
    will-change: transform;

    animation: swipeHint 1.6s ease-in-out infinite;
}

}