
/* ===== ARW Product Table — Frontend Responsive Styles ===== */
.arw-table-wrap { overflow-x: auto; margin: 30px 0; }

.arw-product-table {
    width: 100%; border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.arw-product-table thead th {
    background: #232f3e; color: #fff;
    padding: 12px 14px; text-align: left; font-weight: 600;
}

.arw-product-table tbody tr:nth-child(even) { background: #f7f7f7; }
.arw-product-table tbody tr:hover { background: #fff8ee; }
.arw-product-table td { padding: 12px 14px; vertical-align: middle; border-bottom: 1px solid #e5e5e5; }

.arw-product-table img { display: block; width: 80px; height: auto; border-radius: 4px; }

.arw-buy-btn {
    display: inline-block; background: #FF9900; color: #fff !important;
    padding: 8px 16px; border-radius: 20px; font-weight: bold;
    text-decoration: none !important; font-size: 13px; white-space: nowrap;
    transition: background .2s;
}
.arw-buy-btn:hover { background: #e47911; }

/* Mobile stacking */
@media screen and (max-width: 640px) {
    .arw-product-table thead { display: none; }
    .arw-product-table tbody tr { display: block; border: 1px solid #ddd; margin-bottom: 16px; border-radius: 8px; overflow: hidden; }
    .arw-product-table td { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid #eee; }
    .arw-product-table td::before { content: attr(data-label); font-weight: bold; color: #333; flex: 0 0 40%; }
    .arw-product-table img { width: 60px; }
}
