/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 19 2026 | 22:47:41 */
/* ==========================================================================
   Product Comparison Table — Styles
   ========================================================================== */

.pct-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

/* ---- Table ---- */
.pct-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    min-width: 1100px;
}
/* ---- Tabs ---- */
.pct-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
}

.pct-tab {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #cbd5e1;
    border-bottom: none;
    background: #02233b;
    color: #64748b;
    border-radius: 8px 8px 0 0;
    transition: background 0.2s, color 0.2s;
}

.pct-tab:hover {
    background: #e2e8f0;
    color: #334155;
}

.pct-tab-active {
    background: #1e293b;
    color: #fff;
    border-color: #1e293b;
}

.pct-tab-active:hover {
    background: #1e293b;
    color: #fff;
}

/* ---- Header ---- */
.pct-th {
    background: #02233b;
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    position: relative;
    border-bottom: 3px solid #500000;
}

.pct-th:hover {
    background: #334155;
}

.pct-th.pct-no-sort {
    cursor: default;
}
.pct-th.pct-no-sort:hover {
    background: #1e293b;
}

.pct-sort-icon {
    opacity: 0.4;
    margin-left: 4px;
    font-size: 12px;
    transition: opacity 0.2s;
}

.pct-th:hover .pct-sort-icon {
    opacity: 0.8;
}

.pct-th.pct-sort-asc .pct-sort-icon::after {
    content: ' ▲';
}
.pct-th.pct-sort-desc .pct-sort-icon::after {
    content: ' ▼';
}
.pct-th.pct-sort-asc .pct-sort-icon,
.pct-th.pct-sort-desc .pct-sort-icon {
    opacity: 1;
}

/* Hide the default icon character when actively sorted */
.pct-th.pct-sort-asc .pct-sort-icon > *,
.pct-th.pct-sort-desc .pct-sort-icon > * {
    display: none;
}

/* ---- Cells ---- */
.pct-td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

/* Zebra striping */
.pct-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}
.pct-table tbody tr:nth-child(odd) {
    background-color: rgb(255, 255, 255,.9);
}

.pct-table tbody tr:hover {
    background-color: #eff6ff;
}

/* ---- Model Cell ---- */
.pct-model {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.pct-model img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.pct-model-title {
    font-weight: 600;
    font-size: 13px;
    color: #1e40af;
    text-decoration: none;
    text-align: center;
    display: block;
    line-height: 1.3;
}

.pct-model-title:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* ---- Summary Cell ---- */
.pct-summary-cell {
    min-width: 180px;
    max-width: 280px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* ---- Price ---- */
.pct-td .woocommerce-Price-amount {
    font-weight: 700;
    color: #059669;
    font-size: 15px;
}

/* ---- Responsive: cards on small screens ---- */
@media screen and (max-width: 768px) {
    .pct-table {
        min-width: unset;
    }

    .pct-table thead {
        display: none;
    }

    .pct-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 16px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

    .pct-table tbody tr:nth-child(even) {
        background: #fff;
    }

    .pct-td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .pct-td:last-child {
        border-bottom: none;
    }

    .pct-td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        color: #64748b;
        min-width: 120px;
        margin-right: 12px;
    }

    .pct-model-cell {
        flex-direction: column;
        align-items: center;
    }

    .pct-model-cell::before {
        display: none;
    }

    .pct-model {
        width: 100%;
    }

    .pct-summary-cell {
        max-width: unset;
    }
}