/* Фото товару в таблиці */
.product-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image-wrapper img {
    transition: transform 0.3s ease;
    display: block;
    max-width: 80px;
    height: auto;
    margin: 0 auto;
}
.product-image-wrapper:hover img {
    transform: scale(1.3);
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(32, 80, 90, 0.8);
    color: #fff;
    text-align: center;
    padding: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Одинарні товари */
.featured-item .featured-image img {
    margin: 0 auto;
    display: block;
}

/* Контейнер варіацій */
.variations-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.variation-row {
    display: flex;
    align-items: center;
    border: 1px solid #20505A;
    padding: 10px;
    background: #fff;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}
.variation-image {
    flex: 0 0 80px;
    max-width: 80px;
}
.variation-image img {
    max-width: 60px;
    height: auto;
}
.variation-info {
    flex: 1 1 auto;
    min-width: 0;
}
.variation-cart {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 120px;
    box-sizing: border-box;
}
.variation-cart .button {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Фільтри */
.my-wc-filters-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}
.filter-third {
    flex: 1;
    min-width: 0;
}
.my-wc-reset-row {
    margin-top: 10px;
    text-align: right;
}

/* Кнопки */
.toggle-details,
.button.alt,
.variation-cart .button,
.single_add_to_cart_button,
#my-wc-reset-filters {
    background: #83b735 !important;
    color: #fff !important;
    border: 1px solid #83b735 !important;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.toggle-details:hover,
.button.alt:hover,
.variation-cart .button:hover,
.single_add_to_cart_button:hover,
#my-wc-reset-filters:hover {
    background: #20505A !important;
    border-color: #20505A !important;
}

/* Блок рекомендованих товарів */
.featured-products {
    margin: 20px 0;
    padding: 10px;
    border: 2px solid #20505A;
    background: #f9f9f9;
}
.featured-list {
    display: flex;
    gap: 15px;
}
.featured-item {
    flex: 1;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.featured-image img {
    max-width: 100px;
    height: auto;
}
.featured-title {
    font-size: 14px;
    margin: 5px 0;
    flex: 1 0 auto;
}
.featured-price {
    font-weight: bold;
    color: #20505A;
    margin-bottom: 5px;
}

/* Заголовок таблиці */
.product-table-title {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
    color: #20505A;
}

/* Пагінація */
.pagination {
    text-align: center;
    padding: 10px;
}
.page-btn {
    margin: 0 3px;
    padding: 6px 14px;
    cursor: pointer;
    border: 1px solid #20505A !important;
    background: #fff !important;
    color: #20505A !important;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 16px;
}
.page-btn:hover {
    background: #20505A !important;
    color: #fff !important;
}
.page-btn.active {
    background: #83b735 !important;
    color: #fff !important;
    font-weight: bold;
    border-color: #83b735 !important;
}
.dots {
    margin: 0 5px;
    color: #666;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .my-wc-filters-row {
        flex-direction: column;
        gap: 10px;
    }
    .filter-third {
        width: 100%;
    }
    #my-wc-reset-filters {
        width: 100%;
        margin-top: 10px;
    }

    /* Таблиця */
    .my-wc-product-table,
    .my-wc-product-table thead,
    .my-wc-product-table tbody,
    .my-wc-product-table th,
    .my-wc-product-table td,
    .my-wc-product-table tr {
        display: block;
        width: 100%;
    }
    .my-wc-product-table tr {
        margin-bottom: 15px;
        border: 1px solid #20505A;
        padding: 10px;
        background: #fff;
    }
    .my-wc-product-table th {
        display: none;
    }
    .my-wc-product-table td {
        border: none;
        padding: 6px;
        font-size: 14px;
        line-height: 1.2;
    }

    /* Кнопки */
    .toggle-details,
    .button.alt,
    .variation-cart .button,
    .single_add_to_cart_button,
    #my-wc-reset-filters {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px;
    }

    /* Пагінація */
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .page-btn {
        flex: 1 1 auto;
        min-width: 40px;
        padding: 10px;
        font-size: 18px;
    }
}

/* Дуже маленькі екрани */
@media (max-width: 480px) {
    .page-btn {
        font-size: 20px;
        padding: 12px;
    }
    .toggle-details {
        font-size: 18px;
    }
}
