/* ===== Reset / base ===== */
:root{
  --ink:#e8eaf3; --muted:#9aa3b2; --bg:#0f1220; --card:#13182a; --line:#262c45;
  --chip:#39406a; --accent:#ffd34d; --accent-ink:#111; --danger:#ef4444;
  --radius:14px; --gap:14px;
}
.woocommerce-cart{ background:var(--bg); color:var(--ink); }
.woocommerce-cart a{ color:#dfe6ff; text-decoration:none; }
.woocommerce-cart a:hover{ text-decoration:underline; }

/* Wrapper principal do carrinho */
.cart-isolado-wrap{
  max-width:1100px; margin:24px auto; padding:0 16px;
}
.cart-isolado-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px;
}

/* Breadcrumb / etapas do checkout da sua imagem */
.woocommerce .woocommerce-breadcrumb{ display:none; }
.woocommerce .woocommerce-notices-wrapper{ margin-bottom:12px; }

/* ===== Tabela de itens ===== */
.woocommerce table.shop_table{
  width:100%; border-collapse:separate; border-spacing:0;
  border:1px solid var(--line); border-radius:12px; overflow:hidden;
  background:#0f1428;
}
.woocommerce table.shop_table thead th{
  background:#11162a; color:#dfe6ff; font-weight:600; border-top:none;
  padding:12px 14px;
}
.woocommerce table.shop_table td{
  padding:12px 14px; border-top:1px solid var(--line); color:var(--ink);
}
.woocommerce-cart .product-remove a.remove{
  background:#581a1a; color:#ffd1d1!important; border-radius:999px;
  width:28px; height:28px; line-height:26px; text-align:center; display:inline-block;
  border:1px solid #7a2a2a;
}
.woocommerce-cart .product-thumbnail img{ width:42px; height:42px; object-fit:cover; border-radius:10px; }
.woocommerce-cart .product-name a{ color:#fff; font-weight:600; }

/* Linhas zebradas como no print */
.woocommerce-cart .cart_item:nth-child(odd) td{ background:#0f1428; }
.woocommerce-cart .cart_item:nth-child(even) td{ background:#131a31; }

/* ===== Quantidade (– 1 +) ===== */
.woocommerce .quantity{
  display:inline-flex; align-items:center; gap:8px; background:#0d1530;
  border:1px solid var(--line); border-radius:12px; padding:4px;
}
.woocommerce .quantity .qty{
  width:48px; height:32px; text-align:center; border:none; background:transparent; color:#fff;
}
.wc-isolado-qty{
  width:32px; height:32px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px; border:1px solid var(--line); background:#232946; color:#e9edff;
  cursor:pointer; user-select:none;
}
.wc-isolado-qty:hover{ filter:brightness(1.08); }

/* ===== Cupom ===== */
.woocommerce-cart .coupon{
  display:flex; gap:10px; align-items:center; margin-top:12px;
}
.woocommerce-cart .coupon .input-text{
  min-height:40px; padding:8px 10px; border-radius:10px; border:1px solid var(--line);
  background:#0f1428; color:#e9edff; width:260px;
}
.woocommerce-cart .coupon .button{
  background:#232946; color:#e9edff; border:1px solid var(--line);
  border-radius:12px; padding:10px 14px;
}

/* ===== “Atualizar carrinho” alinhado à direita ===== */
.woocommerce-cart .actions{ display:flex; justify-content:flex-end; gap:10px; }

/* ===== Totais (sidebar) ===== */
.cart-collaterals{ margin-top:18px; }
.cart-total-card{
  background:#000; border:2px solid #000; border-radius:16px; overflow:hidden;
}
.cart-total-head{
  background:#000; color:#fff; font-weight:800; letter-spacing:.3px; padding:12px 14px;
}
.cart_total_inner{ background:#11162a; padding:0; }
.cart_total_inner table{
  width:100%; border-collapse:separate; border-spacing:0;
}
.cart_total_inner th, .cart_total_inner td{
  padding:12px 14px; color:#e9edff; border-top:1px solid #1b2446;
}
.cart_total_inner tr:first-child th, .cart_total_inner tr:first-child td{ border-top:none; }

/* ===== Botões principais ===== */
.woocommerce .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button{
  background:#232946; color:#e9edff; border:1px solid var(--line);
  border-radius:12px; padding:10px 16px; line-height:1.2; display:inline-block;
}
.woocommerce a.checkout-button{
  display:block; text-align:center; font-weight:700;
  background:var(--accent); color:var(--accent-ink);
  border:none; border-radius:12px; padding:14px 16px; box-shadow:0 8px 18px rgba(255,211,77,.15);
}
.woocommerce a.checkout-button:hover{ filter:brightness(1.02); }

/* ===== Responsivo ===== */
@media (max-width: 760px){
  .cart-isolado-card{ padding:14px; }
  .woocommerce table.shop_table td.product-thumbnail{ display:none; }
  .woocommerce table.shop_table td, .woocommerce table.shop_table th{ padding:10px; }
  .woocommerce .coupon .input-text{ width:100%; }
}

/* ===== Opcional: esconde “continuar comprando” do tema ===== */
.woocommerce a.continue-shopping{ display:none!important; }
