/* ============================================================
   CARRINHO
   ============================================================ */

/* Layout principal (lado a lado em desktop) */
.wc-block-components-sidebar-layout.wc-block-cart {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem 1rem;
  gap: 3rem;
  box-sizing: border-box;
}

/* Coluna esquerda (produtos) */
.wc-block-cart__main {
  flex: 1 1 60%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Coluna direita (totais) */
.wc-block-cart__sidebar {
  flex: 1 1 40%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Título da página */
#brx-content > h1 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 3rem 0 2rem 0;
  text-transform: uppercase;
  color: #333;
}

/* Itens no carrinho */
.wc-block-cart-items__header th {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.wc-block-cart-item__product a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.wc-block-cart-item__remove-link {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.4rem;
}

.wc-block-cart-item__remove-link:hover {
  color: #000;
}

/* Quantidade */
.wc-block-components-quantity-selector input {
  width: 60px;
  font-size: 1rem;
  padding: 0.4rem;
  text-align: center;
}

/* Totais */
.wc-block-cart__totals-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
  font-size: 1rem;
}

/* Botão finalizar compras */
.wc-block-cart__submit-button {
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.wc-block-cart__submit-button:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wc-block-cart__submit-container--sticky {
  background-color: #fff !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 1rem 1.5rem 1rem;
}

/* Imagens do produto */
.wc-block-cart-item__image img {
  max-width: 80px;
  border-radius: 0.5rem;
}

/* Responsivo — carrinho */
@media (max-width: 768px) {
  .wc-block-cart__main *,
  .wc-block-cart__sidebar * {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
  }

  .wc-block-cart__main,
  .wc-block-cart__sidebar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .wc-block-cart-item__wrap,
  .wc-block-components-totals-wrapper,
  .wc-block-components-panel,
  .wc-block-components-shipping-address,
  .wc-block-components-totals-shipping__via {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}


/* ============================================================
   FINALIZAR COMPRAS
   ============================================================ */

/* Layout geral */
.wc-block-components-sidebar-layout.wc-block-checkout {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  gap: 3rem;
  box-sizing: border-box;
  min-height: 100vh;
}

/* Coluna principal (formulários) */
.wc-block-checkout__main {
  flex: 1 1 60%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Coluna lateral (resumo da encomenda) */
.wc-block-checkout__sidebar {
  flex: 1 1 40%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Títulos */
.wc-block-components-checkout-step__title,
.wc-block-components-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Inputs e selects */
.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-blocks-components-select__select {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  margin-top: 0.3rem;
}

.wc-block-components-text-input label,
.wc-blocks-components-select__label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.2rem;
  display: block;
}

/* Checkbox */
.wc-block-components-checkbox__label {
  font-size: 1rem;
}

/* Resumo do pedido */
.wc-block-checkout__order-summary-table th,
.wc-block-checkout__order-summary-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.wc-block-checkout__order-summary-table thead th {
  font-weight: 600;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
  font-weight: 500;
  font-size: 1.1rem;
}

