/**
 * Doce de Keli - Frontend CSS
 * Estilos responsivos para o sistema de pedidos
 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ============================================
   VARIÁVEIS E CORES
   ============================================ */
:root {
  --cor-primaria: #D18096;
  --cor-secundaria-1: #D2AE6D;
  --cor-secundaria-2: #A45E4D;
  --cor-texto: #333;
  --cor-texto-claro: #666;
  --cor-borda: #ddd;
  --cor-erro: #d32f2f;
  --cor-sucesso: #4caf50;
  --espacamento: 1rem;
}

/* ============================================
   RESET E BASE
   ============================================ */
.dkh-detail *,
.dkh-checkout *,
.dkh-products * {
  box-sizing: border-box;
}

/* ============================================
   LISTA DE PRODUTOS
   ============================================ */
.dkh-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(16px, 3vw, 48px);
  justify-items: center;
}

.dkh-product-card {
  position: relative;
  width: min(340px, 100%);
  padding: 1.25rem 1.25rem 2rem;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 25px 55px rgba(15, 19, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dkh-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(209, 128, 150, 0.28);
}

.dkh-card-info {
  width: 100%;
  background: #fff;
  border-radius: 26px;
  padding: 1.2rem 1.4rem;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.dkh-product-card:hover .dkh-card-info,
.dkh-product-card:focus-within .dkh-card-info {
  transform: translateY(65px);
}

.dkh-card-title {
  margin: 0;
  font-size: 1.28rem;
  color: var(--cor-texto);
  font-weight: 800;
}

.dkh-card-details {
  margin-top: 0.4rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  text-align: left;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.dkh-product-card:hover .dkh-card-details,
.dkh-product-card:focus-within .dkh-card-details {
  max-height: 120px;
  opacity: 1;
}

.dkh-from-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--cor-texto-claro);
  display: block;
}

.dkh-card-price,
.dkh-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-weight: 700;
  color: #a44a60;
}

.dkh-price-prefix {
  font-size: 0.9rem;
}

.dkh-price-int {
  font-size: 2.2rem;
  line-height: 1;
}

.dkh-price-dec {
  font-size: 1rem;
}

.dkh-card-photo {
  width: calc(100% - 20px);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  margin-top: -50px;
  height: 230px;
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.12);
}

.dkh-card-photo img,
.dkh-card-photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dkh-card-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--cor-texto-claro);
  background: linear-gradient(135deg, #fcebfa 0%, #fff7f9 100%);
}

.dkh-slide-button {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria-1));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(210, 128, 150, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dkh-slide-button:hover,
.dkh-slide-button:focus-visible {
  transform: translate(-50%, -2px);
  box-shadow: 0 22px 34px rgba(210, 128, 150, 0.45);
}

/* Carrossel */
.dkh-products-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.dkh-carousel-track {
  --slides: 3;
  --gap: 20px;
  display: flex;
  gap: var(--gap);
  overflow: hidden;
  scroll-snap-type: x mandatory;
  flex: 1;
  padding: 4px 0;
}

.dkh-carousel-track .dkh-product-card {
  flex: 0 0 calc((100% - (var(--gap) * (var(--slides) - 1))) / var(--slides));
  scroll-snap-align: start;
}

.dkh-carousel-nav {
  background: #fff;
  border: 1px solid #e7e7e7;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--cor-texto);
}

.dkh-carousel-nav:hover {
  border-color: var(--cor-primaria);
  color: var(--cor-primaria);
}

/* ============================================
   DETALHE DO PRODUTO
   ============================================ */
.dkh-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: var(--espacamento);
  max-width: 1200px;
  margin: 0 auto;
}

.dkh-detail-img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

/* Imagem do modal de produto (lista Elementor) */
.dkh-product-modal-image {
  width: 100%;
  max-width: 420px;
}

.dkh-product-modal-image img {
  display: block;
  width: 100%;
  height: clamp(260px, 45vw, 420px);
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dkh-detail-info {
  flex: 1;
  min-width: 300px;
}

.dkh-detail-info h2 {
  color: var(--cor-primaria);
  margin-top: 0;
}

/* ============================================
   VARIAÇÕES
   ============================================ */
.dkh-variations {
  margin: 0;
}

.dkh-variation-group {
  background: #f9f9f9;
  border: 1px solid var(--cor-borda);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.dkh-variation-label {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--cor-texto);
  margin-bottom: 0.5rem;
}

.dkh-required {
  color: var(--cor-erro);
  margin-left: 0.25rem;
}

.dkh-hint {
  font-weight: normal;
  font-size: 0.85rem;
  color: var(--cor-texto-claro);
  margin-left: 0.5rem;
}

.dkh-variation-note {
  font-size: 0.85rem;
  color: #a45e4d;
  background: #fff5f7;
  border-left: 3px solid #d18096;
  padding: 6px 10px;
  border-radius: 6px;
  margin: 6px 0 8px;
}

.dkh-variation-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.dkh-variation-option {
  display: block;
}

.dkh-variation-option label {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: white;
  border: 2px solid var(--cor-borda);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.dkh-variation-option label:hover {
  border-color: var(--cor-primaria);
  background: #fff5f7;
}

.dkh-variation-input {
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: var(--cor-primaria);
}

.dkh-variation-input:checked+label,
.dkh-variation-option label:has(.dkh-variation-input:checked) {
  border-color: var(--cor-primaria);
  background: #fff5f7;
  font-weight: bold;
}

.dkh-variation-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.dkh-price-extra {
  margin-left: auto;
  color: var(--cor-secundaria-1);
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .dkh-variation-option label {
    font-size: 0.9rem;
  }
  
  .dkh-price-extra {
    font-size: 0.85rem;
  }
}

.dkh-variation-error {
  color: var(--cor-erro);
  font-size: 0.85em;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #ffebee;
  border-left: 3px solid var(--cor-erro);
  border-radius: 4px;
}

/* ============================================
   FORMULÁRIOS
   ============================================ */
.dkh-detail label,
.dkh-checkout label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: var(--cor-texto);
}

.dkh-detail input[type="number"],
.dkh-detail textarea,
.dkh-checkout input[type="text"],
.dkh-checkout input[type="tel"],
.dkh-checkout input[type="email"],
.dkh-checkout input[type="date"],
.dkh-checkout select,
.dkh-checkout textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--cor-borda);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.dkh-detail input:focus,
.dkh-detail textarea:focus,
.dkh-checkout input:focus,
.dkh-checkout select:focus,
.dkh-checkout textarea:focus {
  outline: none;
  border-color: var(--cor-primaria);
  box-shadow: 0 0 0 3px rgba(209, 128, 150, 0.1);
}

/* ============================================
   BOTÕES
   ============================================ */
.dkh-btn,
.dkh-add-cart,
#dkh-finalizar {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--cor-primaria);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
}

.dkh-btn:hover,
.dkh-add-cart:hover,
#dkh-finalizar:hover {
  background: #b86e7e;
}

.dkh-btn:disabled,
.dkh-add-cart:disabled,
#dkh-finalizar:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ============================================
   TOTAL
   ============================================ */
.dkh-total {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f0f0f0;
  border-radius: 4px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

#dkh-total-valor {
  color: var(--cor-primaria);
  font-size: 1.5rem;
}

/* ============================================
   CHECKOUT
   ============================================ */
.dkh-checkout {
  background: #fff;
  padding: clamp(24px, 4vw, 60px);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: #2c2a2a;
}

.dkh-checkout-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.dkh-checkout-header {
  text-align: center;
}

.dkh-checkout-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #b79aa3;
  margin-bottom: 0.35rem;
}

.dkh-checkout-header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #c1446b;
  font-weight: 700;
}

.dkh-checkout-subtitle {
  margin-top: 0.35rem;
  color: #6b5f63;
  font-size: 1rem;
}

.dkh-section-card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid #f8d5df;
  box-shadow: 0 22px 40px rgba(216, 134, 149, 0.14);
}

.dkh-section-heading h2 {
  margin: 0;
  font-size: 1.45rem;
  color: #2c2a2a;
}

.dkh-section-heading p {
  margin: 0.35rem 0 0;
  color: #b07b8b;
  font-size: 0.95rem;
}

.dkh-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.dkh-field label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #7e6a70;
  margin-bottom: 0.35rem;
}

.dkh-field input,
.dkh-field select,
.dkh-field textarea {
  width: 100%;
  border: 1px solid #e7d7dd;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #2c2a2a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dkh-field input:focus,
.dkh-field select:focus,
.dkh-field textarea:focus {
  border-color: #c48a96;
  box-shadow: 0 0 0 3px rgba(196, 138, 150, 0.18);
  outline: none;
}

.dkh-hint {
  font-size: 0.85rem;
  color: #b07b8b;
  margin: 0.35rem 0 0.65rem;
}

.dkh-hint-alert {
  color: #b8613e;
  font-weight: 600;
}

.dkh-agendamento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}

.dkh-agendamento-side {
  background: #fff;
  border: 1px solid rgba(249, 199, 213, 0.8);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 18px 40px rgba(216, 134, 149, 0.12);
}

.dkh-observacoes-field {
  margin-top: 1rem;
}

.dkh-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem 2rem;
}

.dkh-finalizar-btn {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #c48a96, #9e6c8c);
  box-shadow: 0 18px 40px rgba(156, 102, 134, 0.4);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dkh-finalizar-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 24px 45px rgba(156, 102, 134, 0.45);
}

.dkh-cart-items-container {
  margin-top: 1.5rem;
}

.dkh-feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.dkh-feedback-error {
  display: block;
  background: #ffe0e0;
  color: #b3261e;
}

.dkh-feedback-success {
  display: block;
  background: #e6ffed;
  color: #276749;
}

.dkh-feedback-info {
  display: block;
  background: #edf2ff;
  color: #1a365d;
}

.dkh-cart-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dkh-cart-item {
  position: relative;
  background: #fff;
  border: 1px solid #f9c7d5;
  border-radius: 24px;
  padding: 3.5rem 1.5rem 1.5rem;
  box-shadow: 0 18px 40px rgba(216, 134, 149, 0.18);
}

.dkh-cart-item::before {
  content: 'ITEM';
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(90deg, #e67892, #f4a9ba);
  border-radius: 24px 24px 12px 12px;
  display: flex;
  justify-content: space-between;
}

.dkh-cart-item::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.dkh-cart-item h4 {
  margin: 0 0 0.35rem 0;
  color: #a04b63;
  font-size: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.dkh-cart-item h4 span {
  font-weight: 600;
}

.dkh-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: #cf4d77;
  margin: 0 0 0.25rem 0;
}

.dkh-item-variations {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  color: #5a4f53;
  font-size: 0.95rem;
  font-weight: 600;
}

.dkh-topper-summary {
  margin-top: 0.65rem;
  padding: 0.85rem 1rem;
  background: #ffe8ef;
  border-radius: 14px;
  font-size: 0.9rem;
  color: #5f4c52;
  font-weight: 600;
  border: 1px solid rgba(249, 199, 213, 0.8);
}

.dkh-item-obs {
  color: #6a5b60;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0.5rem 0 0;
}

.dkh-cart-total {
  background: linear-gradient(115deg, #e67892, #c95c8b);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 1.5rem;
  box-shadow: 0 22px 45px rgba(216, 134, 149, 0.4);
  letter-spacing: 0.02em;
}

.dkh-remove-item {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(90deg, #fdd3de, #f4a9ba);
  color: #a0324f;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dkh-remove-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(212, 143, 155, 0.2);
}

/* ============================================
   MENSAGENS DE ERRO
   ============================================ */
.dkh-error {
  background: #ffebee;
  color: var(--cor-erro);
  padding: 1rem;
  border-left: 4px solid var(--cor-erro);
  border-radius: 4px;
  margin: 1rem 0;
}

/* ============================================
   CONTADOR DO CARRINHO (para header)
   ============================================ */
.dkh-cart-count {
  display: inline-block;
  background: var(--cor-primaria);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 0.5rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
  .dkh-products {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  .dkh-detail {
    flex-direction: column;
    padding: 1rem;
  }

  .dkh-detail-img {
    max-width: 100%;
  }

  .dkh-variation-options {
    gap: 0.25rem;
  }

  .dkh-variation-option label {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .dkh-btn,
  .dkh-add-cart,
  #dkh-finalizar {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .dkh-checkout {
    padding: 1.5rem 1rem;
  }

  .dkh-checkout-wrapper {
    gap: 1.25rem;
  }

  .dkh-section-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .dkh-cart-item {
    padding: 1rem;
  }

  .dkh-calendar-wrapper {
    padding: 1.25rem;
  }

  .dkh-calendar-nav {
    width: 36px;
    height: 36px;
  }

  .dkh-action-area {
    padding-bottom: 1rem;
  }

  .dkh-cart-item {
    padding-top: 3.75rem;
  }

  .dkh-cart-item h4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .dkh-card-title {
    font-size: 1.2rem;
  }

  .dkh-card-price,
  .dkh-price {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .elementor-widget-dkh_products .dkh-products,
  .dkh-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .dkh-product-card {
    width: 100%;
    max-width: none;
    padding: 0.9rem 0.9rem 1.25rem;
    border-radius: 20px;
    gap: 12px;
  }

  .dkh-card-photo {
    width: 100%;
    margin-top: -18px;
    height: 165px;
    border-radius: 18px;
  }

  .dkh-card-info {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .dkh-product-card:hover .dkh-card-info,
  .dkh-product-card:focus-within .dkh-card-info {
    transform: translateY(48px);
  }

  .dkh-card-details {
    font-size: 0.85rem;
    gap: 0.15rem;
  }

  .dkh-card-title {
    font-size: 1rem;
  }

  .dkh-card-price,
  .dkh-price {
    font-size: 0.95rem;
  }

  .dkh-price-prefix {
    font-size: 0.75rem;
  }

  .dkh-price-int {
    font-size: 1.8rem;
  }

  .dkh-price-dec {
    font-size: 0.85rem;
  }

  #dkh-total-valor {
    font-size: 1.2rem;
  }

  .dkh-finalizar-btn {
    width: 100%;
  }
}

/* ============================================
   MODAL/POPUP SISTEMA
   ============================================ */
.dkh-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vh, 36px) clamp(16px, 4vw, 48px);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dkh-modal-overlay.active {
  opacity: 1;
}

.dkh-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: min(640px, calc(100% - clamp(32px, 8vw, 96px)));
  max-width: 100%;
  max-height: calc(100vh - clamp(32px, 6vh, 96px));
  margin: clamp(16px, 4vh, 40px) auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.dkh-modal-overlay.active .dkh-modal {
  transform: scale(1) translateY(0);
}

.dkh-modal.medium {
  width: 600px;
}

.dkh-modal.large {
  width: 900px;
}

.dkh-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #D18096 0%, #D2AE6D 100%);
}

.dkh-modal-title {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.dkh-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.dkh-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.dkh-modal-content {
  padding: 2rem 2rem 2.75rem;
  overflow-y: auto;
  flex: 1;
  box-sizing: border-box;
}

/* Produto em Modal */
.dkh-product-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dkh-product-modal-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
  .dkh-product-modal-image {
    position: sticky;
    top: 20px;
    align-self: start;
  }
  
  label[for="dkh-observacoes"],
  label[for="dkh-foto-referencia"] {
    margin-top: 1.5rem;
  }
}

.dkh-product-modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0;
  /* Align with top of image */
}

.dkh-product-description {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cor-texto);
  line-height: 1.5;
  text-align: center;
  margin: 1rem auto 1.25rem;
  width: 100%;
}

.dkh-product-field {
  margin: 0;
}

.dkh-product-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--cor-texto);
}
.dkh-product-field + .dkh-product-field {
  margin-top: 1.5rem;
}
.dkh-product-field.observacoes {
  margin-top: 1.5rem;
}
.dkh-foto-referencia-group {
  margin-top: 1.5rem;
}

.dkh-product-modal-footer {
  margin-top: 0.5rem;
  padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 2px solid #f0f0f0;
}

.dkh-product-modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.dkh-product-modal-total-value {
  color: var(--cor-primaria);
  font-size: 1.8rem;
}

.dkh-product-modal-actions {
  display: flex;
  gap: 1rem;
}

.dkh-btn-primary,
.dkh-btn-secondary {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.dkh-btn-primary {
  background: var(--cor-primaria);
  color: white;
}

.dkh-btn-primary:hover {
  background: #b86e7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 128, 150, 0.3);
}

.dkh-btn-secondary {
  background: #ffffff;
  color: var(--cor-texto);
  border: 1px solid #e5e5e5;
}

.dkh-btn-secondary:hover {
  background: #f7f7f7;
}

/* Loading */
.dkh-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.dkh-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f0f0f0;
  border-top-color: var(--cor-primaria);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   MINI CARRINHO
   ============================================ */
.dkh-cart-widget {
  position: relative;
}

.dkh-cart-widget--mini {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.dkh-mini-cart {
  position: relative;
}

.dkh-cart-widget--mini .dkh-cart-preview {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(360px, 90vw);
  max-height: 80vh;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.dkh-cart-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.dkh-cart-icon {
  position: relative;
  font-size: 24px;
  transition: color 0.3s;
}

.dkh-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--cor-primaria);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.dkh-cart-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.dkh-cart-bar-toggle {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: #C86F8E;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dkh-cart-bar-toggle:focus {
  outline: none;
}

.dkh-cart-bar-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 111, 142, 0.35);
}

.dkh-cart-bar--shadow .dkh-cart-bar-toggle {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.dkh-cart-bar-total {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.dkh-cart-bar-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  line-height: 1;
}

.dkh-cart-bar-icon .elementor-icon,
.dkh-cart-bar-icon .elementor-icon i,
.dkh-cart-bar-icon .elementor-icon svg {
  color: inherit;
  fill: currentColor;
  line-height: 1;
}

.dkh-cart-bar-icon .dkh-cart-count {
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .dkh-cart-bar {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }

  .dkh-cart-bar-toggle {
    width: 100% !important;
    min-height: 52px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .dkh-cart-bar-total {
    font-size: 1rem;
  }
}

.dkh-cart-widget--bar .dkh-cart-preview {
  display: none !important;
}

.dkh-cart-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #D18096 0%, #D2AE6D 100%);
}

.dkh-cart-preview-header h3 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
}

.dkh-cart-close {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.dkh-cart-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dkh-cart-preview-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.dkh-cart-empty {
  text-align: center;
  color: #999;
  padding: 2rem 1rem;
}

.dkh-cart-preview-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.dkh-cart-preview-item:hover {
  background: #f9f9f9;
}

.dkh-cart-preview-item-info {
  flex: 1;
}

.dkh-cart-preview-item-info strong {
  display: block;
  margin-bottom: 0.25rem;
}

.dkh-cart-preview-item-qty {
  font-size: 0.9rem;
  color: #666;
}

.dkh-cart-preview-item-price {
  font-weight: bold;
  color: var(--cor-primaria);
}

.dkh-cart-preview-item-remove {
  background: #ff4444;
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s;
}

.dkh-cart-preview-item-remove:hover {
  background: #cc0000;
}

.dkh-cart-preview-footer {
  padding: 1rem 1.5rem;
  border-top: 2px solid #e0e0e0;
  background: #f9f9f9;
}

.dkh-cart-preview-total {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.dkh-cart-preview-total-value {
  color: var(--cor-primaria);
}

.dkh-go-to-cart {
  width: 100%;
}

/* ============================================
   NOTIFICAÇÕES TOAST
   ============================================ */
.dkh-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.dkh-notification.show {
  transform: translateX(0);
}

.dkh-notification-success {
  border-left: 4px solid #4caf50;
}

.dkh-notification-info {
  border-left: 4px solid #2196f3;
}

.dkh-notification-error {
  border-left: 4px solid #f44336;
}

/* ============================================
   CAMPOS PERSONALIZADOS
   ============================================ */

/* Topo de Bolo - Alinhamento e campos */
.dkh-topo-bolo-fields {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.dkh-topo-bolo-fields .dkh-product-field input {
  width: calc(100% - 10px) !important;
  max-width: 100%;
}

/* Campo de Quantidade com botões +/- */
.dkh-quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dkh-quantity-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--cor-primaria);
  background: white;
  color: var(--cor-primaria);
  font-size: 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dkh-quantity-btn:hover {
  background: var(--cor-primaria);
  color: white;
  transform: scale(1.1);
}

.dkh-quantity-btn:active {
  transform: scale(0.95);
}

.dkh-quantity-display {
  flex: 1;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--cor-texto);
  padding: 0.5rem;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  min-width: 80px;
}

/* Observações - Campo maior e mais largo */
.dkh-product-field textarea {
  min-height: 120px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
  padding: 0.75rem;
}

/* Upload de foto - Visual melhorado */
.dkh-foto-referencia-group {
  background: #f9f9f9;
  border: 2px dashed #D18096;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.dkh-foto-referencia-group:hover {
  background: #fff5f7;
  border-color: #b86e7e;
}

.dkh-foto-input {
  display: none;
}

.dkh-foto-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--cor-primaria);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.dkh-foto-label:hover {
  background: #b86e7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 128, 150, 0.3);
}

.dkh-foto-preview {
  margin-top: 1rem;
}

.dkh-foto-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.dkh-foto-remove {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.dkh-foto-remove:hover {
  background: #cc0000;
  transform: scale(1.05);
}

.dkh-hint {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.85em;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVO MODAL
   ============================================ */
@media (max-width: 768px) {
  .dkh-modal-overlay {
    padding: clamp(16px, 5vh, 32px) clamp(14px, 6vw, 28px);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  .dkh-modal {
    width: 100%;
    max-width: calc(100% - 12px);
    max-height: calc(100vh - clamp(28px, 10vh, 64px));
    margin: clamp(12px, 4vh, 32px) auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .dkh-product-modal {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dkh-product-modal-image {
    width: 100%;
  }

  .dkh-product-modal-image img {
    width: 100%;
    height: clamp(240px, 60vw, 380px);
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .dkh-product-modal-actions {
    flex-direction: column;
  }

  .dkh-cart-widget--mini .dkh-cart-preview {
    width: calc(100vw - 32px);
    max-width: 360px;
    right: 16px;
    left: auto;
    transform: none;
  }

  .dkh-modal-content {
    padding: 1.25rem 1.25rem 2.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
  }

  .dkh-product-modal-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .dkh-modal-header {
    padding: 1rem;
    flex-shrink: 0;
  }

  .dkh-modal-title {
    font-size: 1.1rem;
  }

  .dkh-variation-group {
    padding: 0.75rem;
  }

  .dkh-variation-label {
    font-size: 1rem;
  }

  .dkh-variation-option label {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .dkh-topo-bolo-fields {
    margin-left: 0 !important;
    padding: 10px !important;
  }

  .dkh-topo-bolo-fields h4 {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  .dkh-topo-bolo-fields .dkh-product-field {
    margin: 0.5rem 0;
  }

  .dkh-topo-bolo-fields .dkh-product-field label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .dkh-topo-bolo-fields input {
    padding: 6px !important;
    font-size: 0.9rem !important;
  }

  .dkh-product-field label {
    font-size: 0.95rem;
  }

  .dkh-product-field textarea {
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .dkh-quantity-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .dkh-quantity-display {
    font-size: 1.2rem;
    min-width: 70px;
    padding: 0.4rem;
  }

  .dkh-product-price {
    font-size: 1.6rem;
  }

  .dkh-product-modal-total {
    font-size: 1.2rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .dkh-product-modal-total-value {
    font-size: 1.4rem;
  }

  .dkh-btn-primary {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .dkh-foto-referencia-group {
    padding: 1rem;
  }

  .dkh-foto-label {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .dkh-modal-overlay {
    padding: clamp(14px, 6vh, 24px) clamp(12px, 8vw, 24px);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  .dkh-modal {
    width: 100%;
    max-width: calc(100% - 8px);
    max-height: calc(100vh - clamp(24px, 12vh, 48px));
    margin: clamp(10px, 5vh, 24px) auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .dkh-modal-header {
    padding: 0.75rem 1rem;
    flex-shrink: 0;
  }

  .dkh-modal-title {
    font-size: 1rem;
  }

  .dkh-modal-content {
    padding: 0.85rem 0.85rem 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
  }

  .dkh-product-modal-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .dkh-product-modal-image img {
    max-height: 200px;
  }

  .dkh-product-price {
    font-size: 1.4rem;
  }

  .dkh-variation-group {
    padding: 0.6rem;
  }

  .dkh-variation-label {
    font-size: 0.95rem;
  }

  .dkh-topo-bolo-fields {
    padding: 8px !important;
  }

  .dkh-topo-bolo-fields h4 {
    font-size: 13px !important;
  }

  .dkh-product-field label {
    font-size: 0.9rem;
  }

  .dkh-product-field textarea {
    min-height: 90px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .dkh-quantity-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .dkh-quantity-display {
    font-size: 1.1rem;
    min-width: 60px;
  }

  .dkh-product-modal-total {
    font-size: 1.1rem;
    padding: 0.6rem;
  }

  .dkh-product-modal-total-value {
    font-size: 1.3rem;
  }

  .dkh-btn-primary {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .dkh-foto-preview img {
    max-width: 120px;
    max-height: 120px;
  }

  .dkh-foto-referencia-group {
    padding: 0.75rem;
  }

  .dkh-foto-label {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   CALENDÁRIO DE AGENDAMENTO
   ============================================ */
.dkh-calendar-wrapper {
  background: linear-gradient(160deg, #fffefe 0%, #fff5f8 100%);
  border: 1px solid #f0dde4;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 26px);
  box-shadow: 0 20px 45px rgba(212, 143, 155, 0.15);
}

.dkh-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dkh-calendar-nav {
  background: #fff;
  border: 1px solid #ead4db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 1;
  font-size: 1.2rem;
  color: #b07384;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.dkh-calendar-nav:hover {
  color: #7b445c;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(176, 115, 132, 0.2);
}

.dkh-calendar-current {
  font-size: 1.2rem;
  font-weight: 700;
  color: #483a40;
  text-transform: capitalize;
}

.dkh-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 0.78rem;
  text-align: center;
  color: #a08b93;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.dkh-calendar-weekdays span {
  font-weight: 600;
}

.dkh-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  min-height: 220px;
}

.dkh-calendar-day {
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 14px;
  color: #5f4d52;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.dkh-calendar-day:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(188, 133, 142, 0.25);
}

.dkh-calendar-day.is-empty {
  background: transparent;
  cursor: default;
  box-shadow: none;
}

.dkh-calendar-day.status-disponivel {
  background: #ecf8f0;
  color: #1f7a43;
  border-color: rgba(57, 183, 115, 0.3);
}

.dkh-calendar-day.status-indisponivel,
.dkh-calendar-day.status-bloqueado {
  background: #f8f2f2;
  color: #c4b1b7;
  cursor: not-allowed;
  box-shadow: none;
}

.dkh-calendar-day.status-bloqueado {
  background: #fde0e0;
  color: #a23a3a;
}

.dkh-calendar-day.is-selected {
  background: linear-gradient(130deg, #c48a96, #8f4e6d);
  color: #fff;
  box-shadow: 0 16px 28px rgba(162, 94, 118, 0.35);
}

.dkh-calendar-loading {
  grid-column: span 7;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  padding: 20px 0;
}

.dkh-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #6f5e63;
  margin-top: 14px;
}

.dkh-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 6px;
}

.dkh-status-dot.available {
  background: #3ba66b;
}

.dkh-status-dot.unavailable {
  background: #cbd5f5;
}

.dkh-status-dot.blocked {
  background: #f56565;
}

.dkh-calendar-feedback {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.dkh-calendar-feedback-info {
  color: #4d4f66;
}

.dkh-calendar-feedback-success {
  color: #0f766e;
}

.dkh-calendar-feedback-error {
  color: #c53030;
}

/* ============================================
   PÁGINA COMPLETA DO CARRINHO
   ============================================ */
.dkh-cart-page {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.dkh-cart-page-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1.25rem;
  color: #c1446b;
  font-weight: 700;
}

.dkh-cart-full {
  margin-bottom: 1.5rem;
}

.dkh-cart-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dkh-cart-card {
  border: 1px solid #f9c7d5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(216, 134, 149, 0.15);
  overflow: hidden;
}

.dkh-cart-card-header {
  background: linear-gradient(90deg, #e67892, #f4a9ba);
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dkh-cart-remove {
  background: #ffffff;
  border: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  color: #E57891;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dkh-cart-remove:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.dkh-cart-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dkh-cart-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
}

.dkh-cart-item-badge {
  color: #cf4d77;
  font-weight: 700;
  font-size: 1rem;
}

.dkh-cart-variation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.dkh-cart-variation {
  background: #fff;
  border: 1px solid #f9c7d5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(216, 134, 149, 0.15);
}

.dkh-cart-variation-label {
  display: block;
  background: #ffd7e1;
  color: #b94a6c;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.6rem;
  text-align: center;
  border-bottom: 1px solid #f9c7d5;
}

.dkh-cart-variation-value {
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  background: #fff;
  text-align: left;
  line-height: 1.4;
}

.dkh-cart-variation-extra {
  color: #cf4d77;
  font-weight: 700;
  margin-left: 0.25rem;
}

.dkh-cart-section-title {
  font-weight: 700;
  color: #b94a6c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.dkh-cart-section-value {
  background: #fff2f6;
  border: 1px solid #f9c7d5;
  border-radius: 12px;
  padding: 0.85rem;
  font-size: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.dkh-cart-topper-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  background: #fff2f6;
  border: 1px solid #f9c7d5;
  border-radius: 12px;
  padding: 0.75rem;
}

.dkh-cart-topper-field {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #1f2937;
}

.dkh-cart-topper-field span {
  font-size: 0.8rem;
  color: #b94a6c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dkh-cart-photo {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #fff2f6;
  border: 1px solid #f9c7d5;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.dkh-cart-photo-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: #4b5563;
}

.dkh-cart-photo-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.dkh-cart-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dkh-cart-item-total {
  background: #ffe1ea;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #b94a6c;
  font-size: 1rem;
}

.dkh-cart-item-total strong {
  font-size: 1.2rem;
  color: #cf4d77;
}

.dkh-cart-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff2f6;
  border: 1px solid #f9c7d5;
  border-radius: 16px;
  margin-top: 2rem;
}

.dkh-cart-summary-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: #cf4d77;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dkh-cart-summary-total .dkh-cart-summary-label {
  font-size: 1rem;
  font-weight: 600;
  color: #c55375;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dkh-cart-summary-total span:last-child {
  font-size: 1.5rem;
}

.dkh-cart-page-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dkh-cart-page .dkh-btn {
  min-width: 170px;
  text-align: center;
}

/* ============================================
   MENU INTERATIVO ELEMENTOR
   ============================================ */
.dkh-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.dkh-menu-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.dkh-menu-item {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 62px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: width 0.45s ease;
  overflow: hidden;
}

.dkh-menu-item::before,
.dkh-menu-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(45deg, var(--dkh-menu-color-start, #a955ff), var(--dkh-menu-color-end, #ea51ff));
  transition: opacity 0.45s ease;
  opacity: 0;
}

.dkh-menu-item::after {
  top: 10px;
  filter: blur(20px);
  z-index: -1;
}

.dkh-menu-item:hover {
  width: 190px;
  cursor: pointer;
}

.dkh-menu-item:hover::before {
  opacity: 1;
}

.dkh-menu-item:hover::after {
  opacity: 0.6;
}

.dkh-menu-link {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dkh-menu-icon {
  font-size: 28px;
  transition: transform 0.4s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dkh-menu-icon i,
.dkh-menu-icon svg {
  color: inherit;
  fill: currentColor;
  width: 1em;
  height: 1em;
}

.dkh-menu-item:hover .dkh-menu-icon {
  transform: scale(0);
}

.dkh-menu-title {
  position: absolute;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.dkh-menu-item:hover .dkh-menu-title {
  transform: scale(1);
}

.dkh-menu-stack-sm .dkh-menu-list {
  flex-wrap: nowrap;
}

@media (max-width: 640px) {
  .dkh-menu-stack-sm .dkh-menu-list {
    flex-wrap: wrap;
  }

  .dkh-menu-item {
    flex: 1 1 calc(50% - 20px);
    width: 100%;
    height: 60px;
  }

  .dkh-menu-item:hover {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .dkh-cart-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .dkh-cart-page-actions {
    width: 100%;
    flex-direction: column;
  }

  .dkh-cart-page .dkh-btn {
    width: 100%;
  }

  .dkh-cart-variation-grid,
  .dkh-cart-topper-grid {
    grid-template-columns: 1fr;
  }

  .dkh-cart-photo {
    flex-direction: column;
    align-items: flex-start;
  }
}
