@charset "UTF-8";
.pdz-mpf-all {
  max-width: 100%;
  min-width: 300px;
}

.pdz-mpf-select-label {
  font-size: 1.2rem;
  margin: 10px 0;
}

.pdz-mpf-select {
  max-width: 100%;
  display: block;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.pdz-mpf-result {
  padding: 20px 0;
}

/* Animação de entrada/saída das etapas */
.pdz-mpf-step {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pdz-mpf-step:not([style*=block]) {
  opacity: 0;
  transform: translateY(20px);
  height: 0;
  overflow: hidden;
  position: absolute;
}

.pdz-mpf-step-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #909090;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  cursor: default;
}

.pdz-mpf-start-screen {
  text-align: center;
  padding: 60px 20px;
}

.pdz-mpf-start-screen h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.pdz-mpf-start-btn {
  font-size: 18px;
  background-color: #007cba;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pdz-mpf-start-btn:hover {
  background-color: #005fa3;
}

.pdz-mpf-category-title {
  margin: 40px 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  color: #333;
  border-bottom: 2px solid #909090;
  padding-bottom: 8px;
}

.pdz-mpf-loading {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #1e293b;
  background: #f1f5f9;
  padding: 5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.pdz-spinner {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-top-color: #3b82f6;
  border-left-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pdz-mpf-product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 40px 0;
}
.pdz-mpf-product-list .added_to_cart {
  display: none;
}

.pdz-mpf-product-card {
  width: 250px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.pdz-mpf-product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pdz-mpf-title {
  font-size: 20px;
  margin: 10px 0;
  word-break: break-word;
}
.pdz-mpf-title a {
  color: #000;
  text-decoration: none;
}

.pdz-mpf-help-text {
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.pdz-mpf-help-text a {
  color: #007cba;
  text-decoration: underline;
  font-style: italic;
}
.pdz-mpf-help-text a:hover {
  color: #005a87;
}

.pdz-mpf-price {
  color: green;
  font-weight: bold;
  margin: 5px auto;
  font-size: 18px;
}

.pdz-mpf-product-card-info {
  height: 100%;
  padding: 10px 10px 0 10px;
}

.pdz-mpf-product-actions {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdz-mpf-open-description {
  display: block;
  color: #007cba;
  border: 1px solid #007cba;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
  word-break: break-word;
}
.pdz-mpf-open-description:hover {
  background: #007cba;
  color: white;
}

.pdz-mpf-add-to-cart {
  display: block;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none !important;
}

.pdz-mpf-add-to-cart-active {
  background-color: #ff7f47;
  color: white;
  opacity: 1;
  cursor: pointer;
}
.pdz-mpf-add-to-cart-active:hover {
  background: #ffa151;
  color: white;
}

.pdz-mpf-add-to-cart-disabled {
  background-color: #c1c1c1;
  color: black;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.pdz-mpf-no-price-text {
  display: block;
  font-style: italic;
  color: #999;
  padding: 8px 12px;
  cursor: default;
  margin: 0;
}

.pdz-mpf-open-description:focus,
.pdz-mpf-add-to-cart:focus {
  outline: 2px solid #ff7f47;
  outline-offset: 2px;
}

/* Suavize todas as transições */
.pdz-mpf-open-description,
.pdz-mpf-product-card,
.pdz-mpf-add-to-cart {
  transition: all 0.3s ease;
}

.pdz-mpf-single-product-selected {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}
.pdz-mpf-single-product-selected .pdz-mpf-single-product-title {
  font-size: 30pt;
  margin-bottom: 30px;
}
.pdz-mpf-single-product-selected .pdz-mpf-single-product-note {
  font-size: 16pt;
  color: #333;
  margin-top: 30px;
}

.pdz-mpf-picked-products {
  display: block;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}
.pdz-mpf-picked-products .pdz-mpf-price-total {
  width: 100%;
  text-align: right;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
  font-size: 1rem;
}
.pdz-mpf-picked-products h3 {
  text-align: center;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-title {
  font-size: 20pt;
  margin-bottom: 20px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img {
  margin-right: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info {
  display: flex;
  flex-direction: row;
  justify-content: left;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-title {
  font-size: 16pt;
  margin: 10px;
  word-break: break-word;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-price {
  font-size: 16pt;
  color: #28a745;
  margin: 10px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-note {
  font-size: 16pt;
  color: #333;
  margin-top: 20px;
}

.pdz-mpf-action-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e6e6e6;
  padding: 30px 20px;
  border-radius: 0 0 8px 8px;
}

.pdz-mpf-next_step-btn {
  width: 100%;
  max-width: 300px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.pdz-mpf-next_step-btn:hover {
  background-color: #38c172;
  transform: scale(1.05);
}
.pdz-mpf-next_step-btn:focus {
  background-color: #38c172;
  transform: scale(1.05);
}
.pdz-mpf-next_step-btn:disabled {
  background-color: #ccc;
  color: #434343;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.pdz-mpf-skip-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pdz-mpf-skip-step-btn {
  display: flex;
  gap: 10px;
  background-color: white;
  color: #007cba;
  border: 2px solid #007cba;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
.pdz-mpf-skip-step-btn:hover {
  background-color: #007cba;
  color: white;
}
.pdz-mpf-skip-step-btn:focus {
  background-color: #007cba;
  color: white;
}
.pdz-mpf-skip-step-btn:disabled {
  background-color: #ccc;
  color: #434343;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.pdz-mpf-final-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e6e6e6;
  padding: 30px 20px;
  border-radius: 0 0 8px 8px;
}

#pdz-mpf-submit-btn {
  width: 100%;
  max-width: 300px;
  white-space: normal;
  background: linear-gradient(135deg, #ff4e50, #f44336);
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 78, 80, 0.4);
  align-items: center;
  font-weight: bold;
}
#pdz-mpf-submit-btn:hover {
  background: linear-gradient(135deg, #f44336, #ff4e50);
  box-shadow: 0 6px 16px rgba(255, 78, 80, 0.6);
}
#pdz-mpf-submit-btn:focus {
  background: linear-gradient(135deg, #f44336, #ff4e50);
  transform: scale(1.05);
}
#pdz-mpf-submit-btn:disabled {
  background: #ccc;
  color: #434343;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.pdz-mpf-whatsapp-btn {
  width: 100%;
  max-width: 300px;
  background: linear-gradient(135deg, #25d366, #3de37a);
  color: #fff;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  text-decoration: none !important;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pdz-mpf-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe57, #23f06b);
  color: #fff;
}

.pdz-mpf-no-products-message {
  text-align: center; /* Centraliza o texto horizontalmente */
  font-size: 1.1em; /* Um pouco maior que o texto padrão para dar destaque */
  color: #666; /* Cor cinza suave para não ser muito agressivo */
  margin: 30px auto; /* Margem superior/inferior para espaçamento e 'auto' para centralizar (se for um elemento de bloco com largura definida) */
  padding: 15px; /* Espaçamento interno */
  background-color: #f8f8f8; /* Um fundo claro para a mensagem */
  border: 1px solid #ddd; /* Uma borda sutil */
  border-radius: 8px; /* Cantos arredondados */
  max-width: 500px; /* Limita a largura máxima da mensagem */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Sombra suave para profundidade */
  line-height: 1.5; /* Espaçamento entre as linhas */
}

.pdz-mpf-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdz-mpf-popup-content-wrapper {
  background: white;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.pdz-mpf-popup-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
}

.pdz-mpf-popup-slider-img {
  max-height: 230px;
  border-radius: 8px;
  flex-shrink: 0;
}

.pdz-mpf-popup-content {
  overflow-y: auto;
  max-height: calc(80vh - 50px);
  padding: 20px 0 0 0;
}

.pdz-mpf-popup-close {
  background: #c36;
  color: white;
  font-weight: 700;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 15px;
}
.pdz-mpf-popup-close:hover {
  background: rgb(234, 89, 137);
}

#pdz-mpf-popup-close-var {
  background: #c36;
  color: white;
  position: absolute;
  font-weight: 700;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
#pdz-mpf-popup-close-var:hover {
  background: rgb(234, 89, 137);
}

#pdz-mpf-variation-options button {
  margin: 5px;
}

.pdz-mpf-hidden {
  display: none !important;
}

.pdz-mpf-popup-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.pdz-highlight {
  animation: pdzPulse 1.5s ease;
  box-shadow: 0 0 15px #ff7f47;
  cursor: not-allowed;
}

@keyframes pdzPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 127, 71, 0.6);
  }
  25% {
    transform: scale(1.03);
    box-shadow: 0 0 20px #ff7f47;
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 127, 71, 0.6);
  }
  75% {
    transform: scale(1.03);
    box-shadow: 0 0 20px #ff7f47;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 127, 71, 0);
  }
}
.pdz-mpf-toast {
  position: fixed;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.pdz-mpf-toast.visible {
  opacity: 1;
}

.pdz-mpf-card-added {
  border: 2px solid #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
  position: relative;
}

/* MOBILE */
@media (max-width: 768px) {
  .pdz-mpf-product-list {
    gap: 10px; /* ou 15px se quiser mais espaçado */
    padding-left: 10px;
    padding-right: 10px;
  }
  .pdz-mpf-product-card {
    width: calc(50% - 10px); /* dois cards por linha com gap */
  }
  .pdz-mpf-product-card {
    max-width: 300px;
  }
  .pdz-mpf-popup-content {
    width: 95%;
    padding: 40px 20px 20px 20px;
  }
  .pdz-mpf-category-title {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
  }
  .pdz-mpf-picked-products .pdz-mpf-price-total {
    font-size: 1rem;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-title {
    font-size: 20pt;
    margin-bottom: 20px;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card {
    flex-direction: column;
    align-items: end;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img {
    margin-right: 0;
    width: 100%;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img img {
    width: 60px;
    height: 60px;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info {
    display: flex;
    flex-direction: row;
    justify-content: left;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-title {
    font-size: 16pt;
    margin: 0px;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-price {
    font-size: 16pt;
    margin-top: 3px;
  }
}
.pdz-mpf-all {
  max-width: 100%;
  min-width: 300px;
}

.pdz-mpf-select-label {
  font-size: 1.2rem;
  margin: 10px 0;
}

.pdz-mpf-select {
  max-width: 100%;
  display: block;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.pdz-mpf-result {
  padding: 20px 0;
}

/* Animação de entrada/saída das etapas */
.pdz-mpf-step {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pdz-mpf-step:not([style*=block]) {
  opacity: 0;
  transform: translateY(20px);
  height: 0;
  overflow: hidden;
  position: absolute;
}

.pdz-mpf-step-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #909090;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  cursor: default;
}

.pdz-mpf-start-screen {
  text-align: center;
  padding: 60px 20px;
}

.pdz-mpf-start-screen h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.pdz-mpf-start-btn {
  font-size: 18px;
  background-color: #007cba;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pdz-mpf-start-btn:hover {
  background-color: #005fa3;
}

.pdz-mpf-category-title {
  margin: 40px 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  color: #333;
  border-bottom: 2px solid #909090;
  padding-bottom: 8px;
}

.pdz-mpf-loading {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #1e293b;
  background: #f1f5f9;
  padding: 5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.pdz-spinner {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-top-color: #3b82f6;
  border-left-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pdz-mpf-product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 40px 0;
}
.pdz-mpf-product-list .added_to_cart {
  display: none;
}

.pdz-mpf-product-card {
  width: 250px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.pdz-mpf-product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pdz-mpf-title {
  font-size: 20px;
  margin: 10px 0;
  word-break: break-word;
}
.pdz-mpf-title a {
  color: #000;
  text-decoration: none;
}

.pdz-mpf-help-text {
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.pdz-mpf-help-text a {
  color: #007cba;
  text-decoration: underline;
  font-style: italic;
}
.pdz-mpf-help-text a:hover {
  color: #005a87;
}

.pdz-mpf-price {
  color: green;
  font-weight: bold;
  margin: 5px auto;
  font-size: 18px;
}

.pdz-mpf-product-card-info {
  height: 100%;
  padding: 10px 10px 0 10px;
}

.pdz-mpf-product-actions {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdz-mpf-open-description {
  display: block;
  color: #007cba;
  border: 1px solid #007cba;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
  word-break: break-word;
}
.pdz-mpf-open-description:hover {
  background: #007cba;
  color: white;
}

.pdz-mpf-add-to-cart {
  display: block;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none !important;
}

.pdz-mpf-add-to-cart-active {
  background-color: #ff7f47;
  color: white;
  opacity: 1;
  cursor: pointer;
}
.pdz-mpf-add-to-cart-active:hover {
  background: #ffa151;
  color: white;
}

.pdz-mpf-add-to-cart-disabled {
  background-color: #c1c1c1;
  color: black;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.pdz-mpf-no-price-text {
  display: block;
  font-style: italic;
  color: #999;
  padding: 8px 12px;
  cursor: default;
  margin: 0;
}

.pdz-mpf-open-description:focus,
.pdz-mpf-add-to-cart:focus {
  outline: 2px solid #ff7f47;
  outline-offset: 2px;
}

/* Suavize todas as transições */
.pdz-mpf-open-description,
.pdz-mpf-product-card,
.pdz-mpf-add-to-cart {
  transition: all 0.3s ease;
}

.pdz-mpf-single-product-selected {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}
.pdz-mpf-single-product-selected .pdz-mpf-single-product-title {
  font-size: 30pt;
  margin-bottom: 30px;
}
.pdz-mpf-single-product-selected .pdz-mpf-single-product-note {
  font-size: 16pt;
  color: #333;
  margin-top: 30px;
}

.pdz-mpf-picked-products {
  display: block;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}
.pdz-mpf-picked-products .pdz-mpf-price-total {
  width: 100%;
  text-align: right;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
  font-size: 1rem;
}
.pdz-mpf-picked-products h3 {
  text-align: center;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-title {
  font-size: 20pt;
  margin-bottom: 20px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img {
  margin-right: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info {
  display: flex;
  flex-direction: row;
  justify-content: left;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-title {
  font-size: 16pt;
  margin: 10px;
  word-break: break-word;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-price {
  font-size: 16pt;
  color: #28a745;
  margin: 10px;
}
.pdz-mpf-picked-products .pdz-mpf-picked-products-note {
  font-size: 16pt;
  color: #333;
  margin-top: 20px;
}

.pdz-mpf-action-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e6e6e6;
  padding: 30px 20px;
  border-radius: 0 0 8px 8px;
}

.pdz-mpf-next_step-btn {
  width: 100%;
  max-width: 300px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.pdz-mpf-next_step-btn:hover {
  background-color: #38c172;
  transform: scale(1.05);
}
.pdz-mpf-next_step-btn:focus {
  background-color: #38c172;
  transform: scale(1.05);
}
.pdz-mpf-next_step-btn:disabled {
  background-color: #ccc;
  color: #434343;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.pdz-mpf-skip-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pdz-mpf-skip-step-btn {
  display: flex;
  gap: 10px;
  background-color: white;
  color: #007cba;
  border: 2px solid #007cba;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
.pdz-mpf-skip-step-btn:hover {
  background-color: #007cba;
  color: white;
}
.pdz-mpf-skip-step-btn:focus {
  background-color: #007cba;
  color: white;
}
.pdz-mpf-skip-step-btn:disabled {
  background-color: #ccc;
  color: #434343;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.pdz-mpf-final-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e6e6e6;
  padding: 30px 20px;
  border-radius: 0 0 8px 8px;
}

#pdz-mpf-submit-btn {
  width: 100%;
  max-width: 300px;
  white-space: normal;
  background: linear-gradient(135deg, #ff4e50, #f44336);
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 78, 80, 0.4);
  align-items: center;
  font-weight: bold;
}
#pdz-mpf-submit-btn:hover {
  background: linear-gradient(135deg, #f44336, #ff4e50);
  box-shadow: 0 6px 16px rgba(255, 78, 80, 0.6);
}
#pdz-mpf-submit-btn:focus {
  background: linear-gradient(135deg, #f44336, #ff4e50);
  transform: scale(1.05);
}
#pdz-mpf-submit-btn:disabled {
  background: #ccc;
  color: #434343;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.pdz-mpf-whatsapp-btn {
  width: 100%;
  max-width: 300px;
  background: linear-gradient(135deg, #25d366, #3de37a);
  color: #fff;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  text-decoration: none !important;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pdz-mpf-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe57, #23f06b);
  color: #fff;
}

.pdz-mpf-no-products-message {
  text-align: center; /* Centraliza o texto horizontalmente */
  font-size: 1.1em; /* Um pouco maior que o texto padrão para dar destaque */
  color: #666; /* Cor cinza suave para não ser muito agressivo */
  margin: 30px auto; /* Margem superior/inferior para espaçamento e 'auto' para centralizar (se for um elemento de bloco com largura definida) */
  padding: 15px; /* Espaçamento interno */
  background-color: #f8f8f8; /* Um fundo claro para a mensagem */
  border: 1px solid #ddd; /* Uma borda sutil */
  border-radius: 8px; /* Cantos arredondados */
  max-width: 500px; /* Limita a largura máxima da mensagem */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Sombra suave para profundidade */
  line-height: 1.5; /* Espaçamento entre as linhas */
}

.pdz-mpf-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdz-mpf-popup-content-wrapper {
  background: white;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.pdz-mpf-popup-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
}

.pdz-mpf-popup-slider-img {
  max-height: 230px;
  border-radius: 8px;
  flex-shrink: 0;
}

.pdz-mpf-popup-content {
  overflow-y: auto;
  max-height: calc(80vh - 50px);
  padding: 20px 0 0 0;
}

.pdz-mpf-popup-close {
  background: #c36;
  color: white;
  font-weight: 700;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 15px;
}
.pdz-mpf-popup-close:hover {
  background: rgb(234, 89, 137);
}

#pdz-mpf-popup-close-var {
  background: #c36;
  color: white;
  position: absolute;
  font-weight: 700;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
#pdz-mpf-popup-close-var:hover {
  background: rgb(234, 89, 137);
}

#pdz-mpf-variation-options button {
  margin: 5px;
}

.pdz-mpf-hidden {
  display: none !important;
}

.pdz-mpf-popup-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.pdz-highlight {
  animation: pdzPulse 1.5s ease;
  box-shadow: 0 0 15px #ff7f47;
  cursor: not-allowed;
}

@keyframes pdzPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 127, 71, 0.6);
  }
  25% {
    transform: scale(1.03);
    box-shadow: 0 0 20px #ff7f47;
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 127, 71, 0.6);
  }
  75% {
    transform: scale(1.03);
    box-shadow: 0 0 20px #ff7f47;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 127, 71, 0);
  }
}
.pdz-mpf-toast {
  position: fixed;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.pdz-mpf-toast.visible {
  opacity: 1;
}

.pdz-mpf-card-added {
  border: 2px solid #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
  position: relative;
}

/* MOBILE */
@media (max-width: 768px) {
  .pdz-mpf-product-list {
    gap: 10px; /* ou 15px se quiser mais espaçado */
    padding-left: 10px;
    padding-right: 10px;
  }
  .pdz-mpf-product-card {
    width: calc(50% - 10px); /* dois cards por linha com gap */
  }
  .pdz-mpf-product-card {
    max-width: 300px;
  }
  .pdz-mpf-popup-content {
    width: 95%;
    padding: 40px 20px 20px 20px;
  }
  .pdz-mpf-category-title {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
  }
  .pdz-mpf-picked-products .pdz-mpf-price-total {
    font-size: 1rem;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-title {
    font-size: 20pt;
    margin-bottom: 20px;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card {
    flex-direction: column;
    align-items: end;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img {
    margin-right: 0;
    width: 100%;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-img img {
    width: 60px;
    height: 60px;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info {
    display: flex;
    flex-direction: row;
    justify-content: left;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-title {
    font-size: 16pt;
    margin: 0px;
  }
  .pdz-mpf-picked-products .pdz-mpf-picked-products-card .pdz-mpf-picked-products-card-info-price {
    font-size: 16pt;
    margin-top: 3px;
  }
}/*# sourceMappingURL=style.css.map */