:root {
  --wcpbo-accent: #cb891e;
  --wcpbo-dark: #1e293b;
  --wcpbo-text-light: #64748b;
  --wcpbo-bg: #fdfdfd;
  --wcpbo-card-bg: #ffffff;
  --wcpbo-border: #f1f5f9;
  --wcpbo-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --wcpbo-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

table {
  border-collapse: collapse;
  border: none !important;
  border-spacing: 0;
  width: 100%;
}
.wcpbo-container {
  max-width: 100%;
  color: var(--wcpbo-dark);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.wcpbo-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

table td {
  border-top: none !important;
  padding: 0 !important;
  font-size: 14px;
}
#wcpbo-search,
#wcpbo-category {
  background: var(--wcpbo-card-bg);
  border: 1px solid var(--wcpbo-border);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: var(--wcpbo-shadow);
  flex: 1;
  min-width: 250px;
}

#wcpbo-search:focus {
  outline: none;
  border-color: var(--wcpbo-accent);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.wcpbo-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wcpbo-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  background: var(--wcpbo-card-bg);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--wcpbo-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--wcpbo-shadow);
  margin-bottom: 30px;
}
.wcpbo-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.wcpbo-img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.p-info {
  padding: 0 15px;
}

.p-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
}

.p-desc {
  font-size: 13px;
  color: var(--wcpbo-text-light);
  display: -webkit-box;
  -webkit-line-clamp: 1;
    padding-right: 15px;
}

.wcpbo-qty-stepper {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border-radius: 10px;
  padding: 4px;
  margin: 0 20px;
}

.wcpbo-qty-stepper button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: white;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.wcpbo-qty-stepper button:hover {
  background: var(--wcpbo-accent);
  color: white;
}

.wcpbo-qty-stepper input {
  width: 50px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .wcpbo-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .p-info {
    padding: 0;
  }

  .wcpbo-qty-stepper {
    justify-content: center;
    margin: 10px auto;
  }
}

.wcpbo-footer {
  position: sticky;
  bottom: 24px;
  background: var(--wcpbo-dark);
  color: white;
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  box-shadow: var(--wcpbo-shadow-lg);
  z-index: 1000;
}

.total-label {
  font-size: 14px;
  opacity: 0.8;
  display: block;
}

.total-amount {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.wcpbo-checkout-btn {
  background: var(--wcpbo-accent);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
}

.wcpbo-checkout-btn:hover {
  filter: brightness(1.1);
}
.wcpbo-table td.wcpbo-info {
  flex-direction: row !important;
}
.site-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
