/* ============================================================
   Product Table Pro — Public CSS  (Complete Rewrite)
   WooCommerce-style cart popup + clean table layout
============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --ptp-primary:     #2563eb;
    --ptp-primary-hov: #1d4ed8;
    --ptp-success:     #059669;
    --ptp-danger:      #ef4444;
    --ptp-text:        #1e293b;
    --ptp-muted:       #64748b;
    --ptp-border:      #e2e8f0;
    --ptp-bg:          #f8fafc;
    --ptp-white:       #ffffff;
    --ptp-radius:      10px;
    --ptp-shadow:      0 4px 24px rgba(0,0,0,.10);
    --ptp-shadow-lg:   0 12px 48px rgba(0,0,0,.18);
    --ptp-font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ptp-trans:       .18s ease;
}

/* ---------- TABLE CONTAINER ---------- */
.ptp-table-container {
    font-family: var(--ptp-font);
    color: var(--ptp-text);
    margin-bottom: 2rem;
}

/* Controls row */
.ptp-table-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ptp-search-wrap { flex: 1; min-width: 200px; }
.ptp-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--ptp-border);
    border-radius: var(--ptp-radius);
    font-size: 14px;
    background: var(--ptp-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.099zm-5.242 1.156a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11'/%3E%3C/svg%3E") no-repeat 12px center;
    transition: border-color var(--ptp-trans), box-shadow var(--ptp-trans);
    outline: none;
    box-sizing: border-box;
}
.ptp-search-input:focus { border-color: var(--ptp-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.ptp-category-filter {
    padding: 10px 14px;
    border: 1px solid var(--ptp-border);
    border-radius: var(--ptp-radius);
    font-size: 14px;
    background: var(--ptp-white);
    cursor: pointer;
    outline: none;
}
.ptp-category-filter:focus { border-color: var(--ptp-primary); }

/* Responsive table wrapper */
.ptp-table-responsive { overflow-x: auto; overflow-y: visible; border-radius: var(--ptp-radius); box-shadow: var(--ptp-shadow); -webkit-overflow-scrolling: touch; }

/* Main table */
.ptp-product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--ptp-white);
}
.ptp-product-table thead tr {
    background: #1e293b;
}
.ptp-product-table thead th {
    color: #fff;
    padding: 13px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ptp-product-table tbody tr {
    border-bottom: 1px solid var(--ptp-border);
    transition: background var(--ptp-trans);
}
.ptp-product-table tbody tr:last-child { border-bottom: none; }
.ptp-product-table tbody tr:hover { background: #f1f5f9; }
.ptp-product-table td {
    padding: 12px 14px;
    vertical-align: middle;
}
/* Mobile data-label */
@media (max-width: 640px) {
    .ptp-product-table thead { display: none; }
    .ptp-product-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--ptp-border);
        border-radius: var(--ptp-radius);
        margin-bottom: 10px;
        background: var(--ptp-white);
    }
    .ptp-product-table td {
        display: flex;
        flex-direction: column;
        padding: 6px 8px;
    }
    .ptp-product-table td::before {
        content: attr(data-label);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: var(--ptp-muted);
        margin-bottom: 2px;
    }
    .ptp-col-image, .ptp-col-add_to_cart { grid-column: 1 / -1; }
}

/* Column specifics */
.ptp-product-image img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; border: 1px solid var(--ptp-border); }
.ptp-product-name { font-weight: 600; font-size: 14px; }
.ptp-price { font-weight: 700; color: #000000; }
.ptp-price ins { text-decoration: none; }
.ptp-price del { color: var(--ptp-muted); font-size: 12px; margin-right: 4px; font-weight: 400; }
.ptp-price .woocommerce-Price-amount,
.ptp-price .woocommerce-Price-currencySymbol,
.ptp-price bdi { display: inline; }
.ptp-col-price { min-width: 90px; }
.ptp-sku { color: var(--ptp-text); font-family: inherit; font-size: 14px; }
.ptp-stock { font-size: 14px; }
.ptp-stock-instock { color: var(--ptp-success); }
.ptp-stock-outofstock { color: var(--ptp-danger); }
/* Short description: bold line + plain text on new row */
.ptp-short-desc { font-size: 14px; color: var(--ptp-text); line-height: 1.6; max-width: 300px; }
.ptp-short-desc p { margin: 0; }
.ptp-short-desc strong { display: block !important; width: 100%; }
.ptp-short-desc-plain { display: block !important; width: 100%; font-weight: 400; color: var(--ptp-muted); margin-top: 2px; font-size: 14px; }
.ptp-rating { font-size: 14px; }
/* Attributes / UPC column */
.ptp-attrs { font-size: 14px; color: var(--ptp-text); }
/* Ensure ALL table cells use same font size */
.ptp-product-table td,
.ptp-product-table th { font-size: 14px; font-family: var(--ptp-font); }
.ptp-qty-wrap input {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid var(--ptp-border);
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

/* Add to cart button */
.ptp-add-to-table-btn {
    background: var(--ptp-primary);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--ptp-trans), transform .1s;
}
.ptp-add-to-table-btn:hover:not(:disabled) { background: var(--ptp-primary-hov); }
.ptp-add-to-table-btn:active { transform: scale(.97); }
.ptp-add-to-table-btn:disabled { background: #94a3b8; cursor: not-allowed; }
.ptp-add-to-table-btn.ptp-btn-added { background: var(--ptp-success); }

/* Pagination */
.ptp-pagination { display: flex; gap: 6px; justify-content: center; padding: 16px 0 4px; flex-wrap: wrap; }
.ptp-page-item {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ptp-border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    background: var(--ptp-white);
    transition: all var(--ptp-trans);
    user-select: none;
}
.ptp-page-item:hover { background: var(--ptp-primary); color: #fff; border-color: var(--ptp-primary); }
.ptp-page-item.active { background: var(--ptp-primary); color: #fff; border-color: var(--ptp-primary); font-weight: 700; }
.ptp-hidden { display: none !important; }

/* ============================================================
   HEADER CART ICON  [ptp_cart] shortcode
============================================================ */
.ptp-header-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background var(--ptp-trans);
    user-select: none;
}
.ptp-header-cart:hover { background: rgba(0,0,0,.06); }
.ptp-hc-icon-wrap { position: relative; }
.ptp-hc-icon {
    width: 26px; height: 26px;
    display: block;
}
.ptp-hc-count {
    position: absolute;
    top: -7px; right: -9px;
    background: var(--ptp-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--ptp-white);
    line-height: 1;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .2s, transform .2s;
}
.ptp-hc-count.ptp-hc-has-items { opacity: 1; transform: scale(1); }
.ptp-hc-label { font-size: 14px; font-weight: 500; }
.ptp-hc-total { font-size: 13px; color: var(--ptp-success); font-weight: 700; }

/* ============================================================
   CART POPUP  (WooCommerce-style)
============================================================ */
#ptp-cart-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

/* Overlay */
.ptp-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.45);
    animation: ptpFadeIn .2s ease;
}
@keyframes ptpFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Slide-in panel from right */
.ptp-popup-panel {
    position: absolute;
    top: 0; right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    background: var(--ptp-white);
    display: flex;
    flex-direction: column;
    box-shadow: var(--ptp-shadow-lg);
    animation: ptpSlideIn .22s cubic-bezier(.4,0,.2,1);
}
@keyframes ptpSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* Header */
.ptp-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 16px;
    border-bottom: 1px solid var(--ptp-border);
    flex-shrink: 0;
}
.ptp-popup-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ptp-text);
}
.ptp-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ptp-muted);
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
    transition: color var(--ptp-trans);
}
.ptp-popup-close:hover { color: var(--ptp-text); }

/* Body */
.ptp-popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

/* Items */
.ptp-popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--ptp-border);
    position: relative;
    transition: background var(--ptp-trans);
}
.ptp-popup-item:hover { background: var(--ptp-bg); }
.ptp-popup-item:last-child { border-bottom: none; }

.ptp-popup-item-img {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--ptp-border);
    flex-shrink: 0;
}
.ptp-popup-item-placeholder {
    background: var(--ptp-bg);
}
.ptp-popup-item-info {
    flex: 1;
    min-width: 0;
}
.ptp-popup-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ptp-popup-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ptp-popup-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--ptp-border);
    border-radius: 6px;
    overflow: hidden;
}
.ptp-popup-qty-btn {
    width: 28px; height: 28px;
    background: var(--ptp-bg);
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ptp-muted);
    transition: background var(--ptp-trans), color var(--ptp-trans);
    flex-shrink: 0;
}
.ptp-popup-qty-btn:hover { background: var(--ptp-border); color: var(--ptp-text); }
.ptp-popup-qty-val {
    min-width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: var(--ptp-white);
    padding: 0 4px;
}
.ptp-popup-item-sub {
    font-size: 14px;
    font-weight: 700;
    color: var(--ptp-success);
}
.ptp-popup-item-remove {
    position: absolute;
    top: 8px; right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #cbd5e1;
    cursor: pointer;
    transition: color var(--ptp-trans);
    line-height: 1;
}
.ptp-popup-item-remove:hover { color: var(--ptp-danger); }

.ptp-popup-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--ptp-muted);
    font-size: 15px;
}

/* Footer */
.ptp-popup-foot {
    border-top: 1px solid var(--ptp-border);
    padding: 16px 20px;
    flex-shrink: 0;
}
.ptp-popup-total {
    font-size: 15px;
    color: var(--ptp-muted);
    margin-bottom: 14px;
}
.ptp-popup-total strong { color: var(--ptp-text); font-size: 20px; }
.ptp-popup-actions {
    display: flex;
    gap: 10px;
}
.ptp-btn-primary, .ptp-btn-secondary {
    flex: 1;
    padding: 11px 18px;
    border-radius: var(--ptp-radius);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: background var(--ptp-trans), color var(--ptp-trans);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ptp-btn-primary { background: var(--ptp-primary); color: #fff !important; }
.ptp-btn-primary:hover { background: var(--ptp-primary-hov); }
.ptp-btn-secondary { background: var(--ptp-bg); color: var(--ptp-text); border: 1px solid var(--ptp-border); }
.ptp-btn-secondary:hover { background: var(--ptp-border); }

/* Body lock when popup open */
body.ptp-popup-open { overflow: hidden; }

/* ============================================================
   ORDER PAGE
============================================================ */
.ptp-order-page-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
    font-family: var(--ptp-font);
    align-items: start;
}
@media (max-width: 860px) { .ptp-order-page-wrap { grid-template-columns: 1fr; } }

.ptp-order-summary-section {
    background: var(--ptp-white);
    border: 1px solid var(--ptp-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: sticky;
    top: 24px;
}
.ptp-form-section {
    background: var(--ptp-white);
    border: 1px solid var(--ptp-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ptp-order-summary-section h3,
.ptp-form-section h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    padding: 16px 24px;
    background: var(--ptp-primary);
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ptp-order-summary-inner,
.ptp-form-section-inner {
    padding: 24px;
}

/* Summary table */
.ptp-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ptp-summary-table th {
    background: #f8fafc;
    padding: 9px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ptp-muted);
    border-bottom: 2px solid var(--ptp-border);
}
.ptp-summary-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.ptp-summary-table tbody tr:last-child td { border-bottom: none; }
.ptp-summary-table tfoot td {
    font-weight: 700;
    background: #f8fafc;
    border-top: 2px solid var(--ptp-border);
    padding: 14px 12px;
}
.ptp-st-total-label { text-align: right; color: var(--ptp-muted); font-size: 13px; }
.ptp-st-total { color: #000000; font-size: 15px; font-weight: 700; }
.ptp-order-total-display { margin-top: 16px; font-size: 15px; display: none; padding: 12px 16px; background: #f0fdf4; border-radius: 8px; border: 1px solid #bbf7d0; }

/* Empty cart */
.ptp-empty-cart { color: var(--ptp-muted); font-size: 15px; padding: 16px 0; }
.ptp-go-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ptp-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 16px;
    border: 2px solid var(--ptp-primary);
    border-radius: 8px;
    transition: all var(--ptp-trans);
}
.ptp-go-back-link:hover { background: var(--ptp-primary); color: #fff; text-decoration: none; }

/* Form */
.ptp-form-wrapper { font-family: var(--ptp-font); }

/* ---- Form fields grid layout ---- */
.ptp-form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}
.ptp-form-col { min-width: 0; }

/* Column width classes */
.ptp-col-full        { grid-column: 1 / -1; }
.ptp-col-half        { grid-column: span 1; }
.ptp-col-one-third   { grid-column: span 1; }
.ptp-col-two-thirds  { grid-column: span 1; }

@media (max-width: 600px) {
    .ptp-form-fields-grid { grid-template-columns: 1fr; }
    .ptp-col-half,
    .ptp-col-one-third,
    .ptp-col-two-thirds { grid-column: 1 / -1; }
}
.ptp-form-field { margin-bottom: 20px; }
/* Fields inside grid cols must fill their column */
.ptp-form-col .ptp-field { width: 100%; margin-bottom: 18px; }
.ptp-form-col .ptp-field input,
.ptp-form-col .ptp-field textarea,
.ptp-form-col .ptp-field select { width: 100%; box-sizing: border-box; }
/* Labels inside ptp-field */
.ptp-field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.ptp-field input,
.ptp-field textarea,
.ptp-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 9px;
    font-size: 14px;
    font-family: var(--ptp-font);
    outline: none;
    box-sizing: border-box;
    background: #fafafa;
    color: var(--ptp-text);
    transition: border-color .18s, box-shadow .18s;
}
.ptp-field input:focus,
.ptp-field textarea:focus,
.ptp-field select:focus {
    border-color: var(--ptp-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    background: #fff;
}
.ptp-field textarea { resize: vertical; min-height: 100px; }
.ptp-required { color: var(--ptp-danger); margin-left: 2px; }
.ptp-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
    letter-spacing: .01em;
}
.ptp-form-field label .ptp-required { color: var(--ptp-danger); margin-left: 2px; }
.ptp-form-field input,
.ptp-form-field textarea,
.ptp-form-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 9px;
    font-size: 14px;
    font-family: var(--ptp-font);
    outline: none;
    transition: border-color var(--ptp-trans), box-shadow var(--ptp-trans);
    box-sizing: border-box;
    background: #fafafa;
    color: var(--ptp-text);
}
.ptp-form-field input:focus,
.ptp-form-field textarea:focus,
.ptp-form-field select:focus {
    border-color: var(--ptp-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    background: #fff;
}
.ptp-field-error { border-color: var(--ptp-danger) !important; box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important; }
.ptp-form-field textarea { resize: vertical; min-height: 100px; }

.ptp-form-messages { margin-bottom: 16px; }
.ptp-form-error {
    background: #fef2f2;
    color: var(--ptp-danger);
    border: 1px solid #fecaca;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.ptp-submit-btn {
    background: var(--ptp-primary);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--ptp-radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: opacity var(--ptp-trans), transform var(--ptp-trans);
    letter-spacing: .02em;
    box-shadow: none;
}
.ptp-submit-btn:hover { opacity: .92; transform: translateY(-1px); }
.ptp-submit-btn:active { transform: translateY(0); }
.ptp-submit-btn:disabled { background: #94a3b8; cursor: not-allowed; box-shadow: none; transform: none; }

/* Form submit area */
.ptp-form-submit { margin-top: 24px; }

/* Trust badges under submit button */
.ptp-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--ptp-muted);
}
.ptp-form-trust span { display: flex; align-items: center; gap: 4px; }

/* Order Confirmation */
.ptp-order-confirmation {
    text-align: center;
    padding: 48px 28px;
    background: var(--ptp-white);
    border-radius: var(--ptp-radius);
    box-shadow: var(--ptp-shadow);
    max-width: 520px;
    margin: 32px auto;
}
.ptp-confirm-icon { font-size: 60px; margin-bottom: 16px; }
.ptp-order-confirmation h2 { font-size: 26px; margin: 0 0 10px; color: var(--ptp-text); }
.ptp-order-confirmation p { color: var(--ptp-muted); line-height: 1.6; margin: 0 0 8px; }
.ptp-order-ref {
    display: inline-block;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin: 14px 0;
    letter-spacing: .5px;
}
.ptp-contact-notice {
    margin-top: 16px;
    padding: 14px;
    background: #eff6ff;
    border-radius: 8px;
    color: #1e40af;
    font-size: 14px;
}

/* ============================================================
   ORDER PAGE — Compact qty stepper + remove button
============================================================ */
.ptp-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ptp-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--ptp-white);
}
.ptp-stepper-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: var(--ptp-bg);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: var(--ptp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ptp-trans);
    flex-shrink: 0;
}
.ptp-stepper-btn:hover { background: var(--ptp-border); }
.ptp-stepper-val {
    min-width: 26px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 0 3px;
    background: var(--ptp-white);
    line-height: 24px;
}

/* Remove button — compact dark icon */
.ptp-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: none;
    background: #475569;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    transition: background var(--ptp-trans);
    flex-shrink: 0;
}
.ptp-remove-btn:hover { background: var(--ptp-danger); }
.ptp-remove-btn svg { display: block; }

/* ============================================================
   OVERFLOW FIXES — prevent horizontal scroll
============================================================ */
.ptp-table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptp-order-page-wrap { overflow-x: hidden; }
.ptp-order-summary-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptp-summary-table { min-width: 320px; }

/* Summary table total — black not green */
.ptp-st-total { color: #000; font-size: 15px; }
