/* CSS para Interface de Escolha de Centro de Distribuição */

/* Ocultar elementos da loja durante a escolha (shop/catalog) */
.products,
.woocommerce-pagination,
.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}

/* Ocultar elementos do single product durante a escolha */
h1.product_title,
.product_title.entry-title,
.summary .price,
.price,
.woocommerce-product-rating,
.woocommerce-review-link,
.woocommerce-Reviews,
.woocommerce-review-link {
  display: none !important;
}

/* Estilos para ícones e títulos */
.chose-method-with-icon {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.chose-method-with-icon i {
  height: 25px;
  font-size: 25px;
}

.chose-method-with-icon h3 {
  font-size: 25px;
  margin-bottom: 0px;
}

/* Container principal da escolha de centro */
.luciluci-center-overlay {
  background: #fff;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.luciluci-left,
.luciluci-right {
  flex: 1;
  min-width: 280px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.luciluci-left h3,
.luciluci-right h3 {
  margin-top: 0;
}

.luciluci-right {
  align-self: flex-start;
}

/* Lista de centros */
.luciluci-centers-list {
  list-style: none;
  padding: 10px;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #eaeaea;
  border-radius: 6px;
}

.luciluci-centers-list li {
  padding: 8px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.2s ease;
}

.luciluci-centers-list li:last-child {
  border-bottom: none;
}

.luciluci-centers-list li.selected {
  background: #f0f0f0;
  border-left: 4px solid #1e1e1e;
  padding-left: 6px;
}

.luciluci-centers-list li .meta {
  font-size: 13px;
  color: #444;
}

/* Botões de confirmação */
.luciluci-confirm {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  background: #1e1e1e;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 15px;
  margin-top: 10px;
}

.luciluci-confirm i {
  font-size: 12px;
  margin-left: 10px !important;
}

/* Nota de aviso */
.luciluci-note {
  margin-bottom: 12px;
  color: #c00;
  font-weight: 600;
}

/* Filtro de estado */
.luciluci-filter-state {
  margin-bottom: 12px;
  display: block;
  width: 100%;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Estados de botão desabilitado */
.disabled-finalizar-compra-button {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .luciluci-center-overlay {
    flex-direction: column;
  }

  .luciluci-left,
  .luciluci-right {
    width: 100%;
  }
}
