/* ========================================
   DEGUSTA OFERTAS - ESTILO PERSONALIZADO
   Aplicação do design do site principal
   ======================================== */

/* ========================================
   VARIÁVEIS CSS E CORES PRINCIPAIS
   ======================================== */
:root {
  --degusta-green: #00A651;
  --degusta-red: #C41E3A;
  --degusta-blue: #007BFF;
  --degusta-dark: #333333;
  --degusta-light-gray: #f8f9fa;
  --degusta-back-footer:#111827;
  --degusta-white: #ffffff;
  --degusta-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --degusta-border-radius: 8px;
  --degusta-transition: all 0.3s ease;
}

/* ========================================
   RESET E CONFIGURAÇÕES GERAIS
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--degusta-dark);
  line-height: 1.6;
}
#imagedivcaptchar img{
		width: 210px;
	}
/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */
header {
  background: var(--degusta-white);
  box-shadow: var(--degusta-shadow);

  z-index: 99;
}

.logo img {
  max-height: 60px;
  width: auto;
}

/* Botão de atendimento */

.getnet5{
	
}
.getnet5pix{
	
}
.payment-radio{
	width: 49% !important;
	padding: 10px !important;
	margin-bottom:1px !important;
	float:left;
}
.inner-payment{
	padding:15px !important;
}
.header-top .btn:hover,
.header-top a[href*="tel"]:hover {
  background: #0056b3 !important;
  transform: translateY(-1px);
}

/* ========================================
   FOOTER
   ======================================== */
.img-footer{
	filter: brightness(0) invert(1); 
	width: 180px;
}


/* ========================================
   SEÇÃO DE PRODUTOS - TÍTULO E CONTROLES
   ======================================== */
.category-info h1,
.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--degusta-dark);
  margin-bottom: 2rem;
  position: relative;
}

.category-info h1::after,
.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--degusta-green);
  border-radius: 2px;
}

/* Controles de ordenação e exibição */
.sort-controls {
  background: var(--degusta-light-gray);
  padding: 1rem;
  border-radius: var(--degusta-border-radius);
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.sort-controls select {
  border: 1px solid #ddd;
  border-radius: var(--degusta-border-radius);
  padding: 8px 12px;
  background: var(--degusta-white);
  color: var(--degusta-dark);
  font-size: 14px;
}
.label-opcoes{
	font-size: 2rem;
	font-weight: 600;
}
.opcoes-compra{
	font-size: 1.8rem;
	width:100%;
	display: flex;
    align-items: center;
}
.opcoes-form-group{
	display:flow-root;
}
.date{
    display: flex;
    justify-content: flex-start;
    width: 105px;
    align-items: center;
}
.opp-cmp{
	margin-top:10px;
}
hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #eee;
}
.thumbnail a>img, .thumbnail>img{
	background-size: cover;
    height: 530px;
    object-fit: cover;
}
/* ========================================
   GRID DE PRODUTOS
   ======================================== */
.product-layout {
  margin-bottom: 2rem;
  transition: var(--degusta-transition);
}

.product-layout:hover {
  transform: translateY(-5px);
}

/* ========================================
   CARDS DE PRODUTO
   ======================================== */
.product-thumb {
  background: var(--degusta-white);
  border-radius: var(--degusta-border-radius);
  box-shadow: var(--degusta-shadow);
  overflow: hidden;
  position: relative;
  transition: var(--degusta-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-thumb:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Badge de destaque */
.product-thumb::before {
  content: 'Destaque';
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--degusta-red);
  color: var(--degusta-white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   IMAGEM DO PRODUTO
   ======================================== */
.product-thumb .image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: var(--degusta-light-gray);
}

.product-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--degusta-transition);
}

.product-thumb:hover .image img {
  transform: scale(1.05);
}

/* ========================================
   BOTÃO DE LISTA DE DESEJOS
   ======================================== */
.desejo {
    position: absolute;
	top: 15px;
    right: 10px;
    z-index: 20;
}
.desejo button {
  background: rgb(237 215 215);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--degusta-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.desejo button:hover {
  background: var(--degusta-red);
  color: var(--degusta-white);
  transform: scale(1.1);
}

.desejo button i {
  font-size: 22px;
}

/* ========================================
   INFORMAÇÕES DO PRODUTO
   ======================================== */
.product-thumb .caption {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.product-thumb .caption h1,
.product-thumb .caption h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--degusta-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top:0px;
  height: 60px;
  width:100%;
} 
.thumbnails .image-additional img{
	height:auto;
}
/* Localização (simulada) */
.product-thumb .localizacao {
  font-size: 12px;
  color: #666;
  margin-bottom: 0.5rem;
  display: flex;
}
.botaocomparar button{
	font-size:1.8rem;
}
.titulo-home{
	margin: 15px auto;
    text-align: center;
    color: #ba1430;
    padding-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
@media (max-width: 768px) {
.col-sm-6{
	padding-right: 0px;
    padding-left: 0px;
}
.row{
	margin-right: 0;
    margin-left: 0;
	margin-top: 2px;
}
.container{
	padding-right: 0px;
    padding-left: 0px;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
	max-width: 100%;
}
.fullwidthbanner img{
	width: 100%;
    height: 120px;
	overflow: hidden; /* corta o que passar */
	object-fit: cover;  /* preenche e corta bordas */
	object-position: center; /* centraliza */
}
.thumbnail a>img, .thumbnail>img {
    background-size: cover;
    height: 265px;
    object-fit: cover;
	}
#avalicao-titulo{
	justify-content: left;
}
.compra{
	justify-content: flex-start;
}
.botaocomparar{
	justify-content: center;
}
.thumbnails{
	margin-left:0px;
}
}

/* ========================================
   PREÇOS
   ======================================== */
.product-thumb .price {
	align-items: center;
    width: 58%;
    line-height: 14px;
}
.price-olds{
	text-decoration: line-through;
}
.product-thumb .price .boleto-discount {
    color: var(--degusta-red);
	font-size: 2rem;
    font-weight: 700;
}

.product-thumb .price .boleto-discount .price-new {
  color: var(--degusta-red) !important;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
}

.product-thumb .price .boleto-discount small {
  color: var(--degusta-red);
  font-weight: 500;
  font-size: 1.4rem;
}

/* Preço original */
.product-thumb .price > span:not(.price-new),
.product-thumb .price > text() {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Informações de parcelamento */
.parcelamento {
  font-size: 1.3rem;
  color: #666;
}

.parcelamento small {
  color: #666;
}
.boleto-discount-product span{
	font-size:1.3rem;
}
/* ========================================
   BOTÕES DE AÇÃO
   ======================================== */
.button-group {
	display: flex;
	width: 40%;
    gap: 0.5rem;
	align-items: center;
}

.button-group button {
  border: none;
  border-radius: var(--degusta-border-radius);
  padding: 10px 15px;
  font-weight: 600;
  transition: var(--degusta-transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
}


/* Botão Comprar */
.button-group button[onclick*="cart.add"],
#button-cart {
  background: var(--degusta-green) !important; 
  color: var(--degusta-white) !important; 
  flex: 1;
  font-size: 1.5rem;
}

.button-group button[onclick*="cart.add"]:hover,
#button-cart:hover {

}

/* Botão Comparar */
.button-group button[onclick*="compare.add"] {
  background: var(--degusta-light-gray);
  color: var(--degusta-dark);
  width: 50px;
  height: 48px;
}

.button-group button[onclick*="compare.add"]:hover {
  background: var(--degusta-green);
  color: var(--degusta-white);
}

/* ========================================
   CONTADOR DE VENDAS (SIMULADO)
   ======================================== */

.button-group {
  position: relative;
  margin-left: 5px;
}
/* ========================================
   AFILIADO
   ======================================== */
.saque {
	padding: 20px;
	font-size:1.5rem;
	text-transform: uppercase;
}
   
 .saque strong{
	 color:red;
 }  
   
   
/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
  .product-thumb .caption h1,
  .product-thumb .caption h4 {
    font-size: 2rem;
    text-align: left;
	width: 100%;
  }
  
  .product-thumb .price .boleto-discount .price-new {
    font-size: 2rem;
  }
  
  .button-group button[onclick*="compare.add"] {
    width: 100%;
    height: 48px;
  }
  
  .category-info h1,
  .page-title {
    font-size: 2rem;
  }
  
  .product-thumb .price {
    width: 55%;
  }
.button-group {
    width: 42%;
  }
  .checkbox, .radio {
    width: 100%;
	}
	.image-additional {
    max-width: 68px;
}
  #search.busca .input-group-btn{
	right:0px;
  }
  .option-produto{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.date{
	margin:auto auto 20px auto;
}
.price-olds {

    text-align: left;
    float: left;
    width: 100%;
}
.align-items-center{
	height: 160px;
}
.img-footer{
	margin:auto;
}
footer h5 {
    font-size: 2.4rem;
    margin-top: 22px;
}
footer a{
	font-size: 1.7rem;
    line-height: 14px;
}
}

@media (max-width: 576px) {
  .product-thumb .image {
    height: 200px;
  }
  
  .product-thumb .caption {
    padding: 1rem;
  }
  
  .button-group {
    
  }
  
  .sort-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ========================================
   ANIMAÇÕES E MICRO-INTERAÇÕES
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-layout {
  animation: fadeInUp 0.6s ease forwards;
}

.product-layout:nth-child(1) { animation-delay: 0.1s; }
.product-layout:nth-child(2) { animation-delay: 0.2s; }
.product-layout:nth-child(3) { animation-delay: 0.3s; }
.product-layout:nth-child(4) { animation-delay: 0.4s; }
.product-layout:nth-child(5) { animation-delay: 0.5s; }
.product-layout:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   MELHORIAS ADICIONAIS
   ======================================== */

/* Breadcrumb styling */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #d31938;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Pagination styling */
.pagination {

}

.pagination .page-link {
  color: var(--degusta-green);
  border-color: var(--degusta-green);
}

.pagination .page-item.active .page-link {
  background-color: var(--degusta-green);
  border-color: var(--degusta-green);
}

/* Loading states */
.product-thumb.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-thumb.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid var(--degusta-light-gray);
  border-top: 3px solid var(--degusta-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 100;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   Miniaturas pagina produto
   ======================================== */
   .miniaturas{
	position: absolute;
    top: 15px;
	opacity: 0.6;
	}
   
   
  
/* ========================================
   FIM Miniaturas pagina produto
   ======================================== */
   
   
   /* ========================================
		INICIO CHECKOUT
   ======================================== */

/* ============================
   LAYOUT GERAL DO CHECKOUT
   ============================ */

.checkout-product-wrapper {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* Left = lista de produtos 65% */
.checkout-products {
	width:100%;
}

/* Right = totals 30% */
.checkout-totals {
  flex: 0 0 30%;
  min-width: 280px;
  align-self: flex-end;
  height: 195px;
}

/* Mantém formatação original do box de totais */
.checkout-totals .totals-box {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 7px 8px rgba(0,0,0,0.08); 
  position: sticky;
  top: 20px;
}

.checkout-totals .totals-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
  text-align: center;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 10px;
}

.totals-list .total-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  border-bottom: 1px dashed #ddd;
}

.totals-list .total-line:last-child {
  border-bottom: none;
}

/* total final mais destacado */
.totals-list .total-line:last-child .total-value {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.vouchers h5 {
  margin-top: 18px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.voucher-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: #444;
}

.checkout-actions {
  margin-top: 18px;
  text-align: center;
}

.checkout-actions .btn-checkout {
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 700;
}


/* ============================
   LISTA DE PRODUTOS (CARD)
   ============================ */

.checkout-product {
  display: flow-root;
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea;
  width:98%;
}

/* product-meta = 100% largura */
.product-meta {
  width: 100%;
  display: block;
  margin-bottom: 10px;	
}

.product-meta > * {
  display: block;
  width: 100%;
  margin: 4px 0;
}

.product-name {
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: inherit;
}

.product-reservation,
.product-option,
.product-recurring {
  font-size: 13px;
  color: #555;
}

/* ============================
   product-row = left + right
   ============================ */

.product-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* LEFT – imagem 35% */
.product-left {
	float: left;
	width: 35%;
}
.qty-actions{
	float: right;
    margin-left: 40px;
}
.product-thumb2 {
  display: block;
  width: 100%;
  max-width: 140px;
}

.product-thumb2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* RIGHT – controles 70% */
.product-right {
  flex: 1 1 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Quantidade */
.product-quantity {
  display: flex;
  align-items: center;

}

.btn-qty {
  padding: 6px 10px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.qty-input2 {
	height: 41px;
    width: 28px;
    text-align: center;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid #ccc !important;
	border-bottom: 1px solid #ccc !important;
    font-size: 16px !important;
}

/* remover */
.qty-actions .btn-delete {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

/* Preços: subtotal e total */
.product-prices {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.product-price {
  font-size: 13px;
  color: #666;
}

.product-total {
  font-weight: 700;
  font-size: 14px;
}


/* ============================
   RESPONSIVO
   ============================ */

@media (max-width: 800px) {

  .checkout-product-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .checkout-products {
    width: 100%;
    flex: none;
  }

  .checkout-totals {
    width: 100%;
    flex: none;
  }

  .checkout-totals .totals-box {
    position: relative;
    top: 0;
    margin-top: 10px;
  }

  /* Em mobile, left e right mantêm linha única */
  .product-row {
    flex-direction: row;
    gap: 12px;
  }

  .product-left {
        width: 100%;
        float: none;
        display: block;
  }
  .product-thumb2{
	  display:inline;
  }

  .product-right {
        width: 100%;
        margin-top: 25px;
        padding: 0px 5px;
  }

}


   /* ========================================
		FIM CHECKOUT
   ======================================== */
   
   
      /* ========================================
		MAPS
   ======================================== */
   .mapouter{
	   width:auto !important;
	   height:250px !important; 
   }
   .gmap_canvas{
	   width:auto !important;
	   height:250px !important;
   }
   
         /* ========================================
		FIM MAPS
   ======================================== */
   
 /* ============================================
   DEGUSTA OFERTAS - ORDER LIST MODERN STYLE (COMPACT)
   ============================================ */

/* Variáveis de Cores */
:root {
  --primary-color: #C41E3A;
  --primary-dark: #a20621;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --light-bg: #f9f9f9;
  --border-color: #e0e0e0;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
}

/* ============================================
   CONTAINER E LAYOUT GERAL
   ============================================ */

.account-order-container {
  padding: 20px 0;
  min-height: 100vh;
}

.order-list-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.order-list-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px 0;
  letter-spacing: -0.5px;
}

.order-list-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  font-weight: 400;
}

/* ============================================
   GRID DE PEDIDOS
   ============================================ */

.orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .orders-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CARD DE PEDIDO
   ============================================ */

.order-card {
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.order-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* ============================================
   CARD HEADER
   ============================================ */

.order-card-header {
	padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
}

.order-id-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.order-id-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

.order-id-number {
  font-size: 18px;
  font-weight: 700;
}

.order-status-badge {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Status Badge Colors */
.order-status-badge.status-pagamento-aprovado {
  background-color: var(--success-color);
  border-color: var(--success-color);
}
.order-status-badge.status-aguardando-pagamento {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
  color: var(--text-dark);
}
.order-status-badge.status-processando-pagamento {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
  color: var(--text-dark);
}
.order-status-badge.status-negado {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.order-status-badge.status-estornado {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}


.order-status-badge.status-ticket-utilizado {
  background-color: var(--info-color);
  border-color: var(--info-color);
}

.order-status-badge.status-tickets-pendentes {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
  color: var(--text-dark);
}

.order-status-badge.status-cancelado {
  background-color: var(--danger-color);
  border-color: var(--danger-color);
}

/* ============================================
   CARD BODY
   ============================================ */

.order-card-body {
  padding: 12px 15px;
  flex-grow: 1;
}

/* Info Section */
.order-info-section {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-label {
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.info-value {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 13px;
}

/* Details Section */
.order-details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  background-color: var(--light-bg);
  border-radius: 4px;
  border-left: 3px solid var(--primary-color);
}

.detail-icon {
  font-size: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 1px;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.detail-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
}

.detail-value.total-value {
  color: var(--primary-color);
  font-size: 15px;
}

/* ============================================
   CARD FOOTER
   ============================================ */

.order-card-footer {
  padding: 10px 15px;
}

.btn-view-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 15px;
  background-color: var(--success-color);
  color: var(--white) !important;
  border: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-view-order:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateX(2px);
}

.btn-view-order i {
  font-size: 14px;
}

/* ============================================
   PAGINATION SECTION
   ============================================ */

.pagination-section {
  margin: 15px 0;
  padding: 15px;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pagination-section .text-left,
.pagination-section .text-right {

  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.empty-state-icon {
  font-size: 56px;
  color: var(--border-color);
  margin-bottom: 15px;
}

.empty-state-text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.empty-state .btn-lg {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ============================================
   BUTTONS SECTION
   ============================================ */

.buttons-section {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  background-color: var(--light-bg);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-secondary i {
  font-size: 14px;
}

/* ============================================
   BREADCRUMB CUSTOMIZADO
   ============================================ */

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin: 0;
  border-bottom: none;
}

.breadcrumb li {
  display: inline-block;
  margin-right: 5px;
  font-size: 13px;
}

.breadcrumb li:not(:last-child)::after {
  content: '';
  margin-left: 8px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .orders-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .order-list-header h1 {
    font-size: 24px;
  }
  

}

@media (max-width: 576px) {
  .account-order-container {
    padding: 10px 0;
  }
  
  .order-list-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .order-list-header h1 {
    font-size: 22px;
  }
  
  .order-list-subtitle {
    font-size: 13px;
  }
  
  .orders-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .order-card-header {
    padding: 10px 12px;
    gap: 8px;
  }
  
  .order-card-body {
    padding: 10px 12px;
  }
  
  .order-card-footer {
    padding: 8px 12px;
  }
  
  .pagination-section {
    padding: 12px;
    margin: 15px 0;
  }
  
  .buttons-section {
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 12px;
  }
  
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 9px 15px;
  }
  
  .empty-state {
    padding: 35px 15px;
  }
  
  .empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .empty-state-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-card {
  animation: slideIn 0.3s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .account-order-container {
    background-color: var(--white);
  }
  
  .order-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--border-color);
  }
  
  .btn-view-order,
  .buttons-section {
    display: none;
  }
}


  /* ============================================
   DEGUSTA OFERTAS - ORDER INFO FINAL LAYOUT
   ============================================ */

:root {
  --primary-color: #C41E3A;
  --primary-dark: #a20621;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-bg: #f5f5f5;
  --border-color: #ddd;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
}

/* ============================================
   CONTAINER
   ============================================ */

.order-info-clean {
  padding: 20px 0;
}

.order-header {
  padding-bottom:5px;
}

.order-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.order-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   ORDER SUMMARY
   ============================================ */

.order-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px;
  background-color: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.summary-item1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.summary-item2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.summary-item3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.summary-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.summary-value {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================
   SECTION TITLE
   ============================================ */

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 25px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

/* ============================================
   PRODUCTS SECTION - NEW LAYOUT
   ============================================ */

.products-section {
  margin-bottom: 30px;
}

.product-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

/* Product Row - Horizontal Layout */
.product-row {
  display: flex;
  gap: 15px;
  padding: 15px;
  align-items: center;
}

.product-info-col {
  flex: 1;
  min-width: 200px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.option-badge {
  background-color: var(--light-bg);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

/* Product Details Col */
.product-details-col {
  display: flex;
  gap: 15px;
  flex: 0 0 auto;
  justify-content: center;
}

.detail-item {
    display: flex;
    flex-direction: row;
    gap: 3px;
    text-align: center;
    min-width: 70px;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
  font-size: 9px;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.detail-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.detail-value.total {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

/* Product Tickets Col */
.product-tickets-col {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 370px;
}

.ticket-mini {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 8px;
  text-align: center;
  min-width: 100px;
}

.ticket-status-mini {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-top: 6px;
  width: 100%;
}

.ticket-status-mini.validated {
  background-color: var(--success-color);
  color: var(--white);
}

.ticket-status-mini.pending {
  background-color: var(--warning-color);
  color: var(--text-dark);
}

.ticket-code-mini {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

.qr-mini {
  width: 70px;
  height: 70px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qr-mini:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* Product Footer */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-top: solid 1px var(--light-bg);
  gap: 15px;
  flex-wrap: wrap;
}

.product-actions-col {
  display: flex;
  gap: 8px;
}

.btn-action {
  padding: 8px 14px;
  background-color: var(--success-color);
  color: var(--white) !important;
  border: none;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.btn-action:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-action.btn-danger {
  background-color: var(--danger-color);
}

.btn-action.btn-danger:hover {
  background-color: #c82333;
}

.product-location-col {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 200px;
    justify-content: flex-end;
    align-items: center;
}

.btn-location {
  padding: 8px 14px;
  background-color: var(--primary-color);
  color: var(--white) !important;
  border: none;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  max-width: 80px;
}

.btn-location:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-location.btn-mobile {
  display: none;
}

@media (max-width: 768px) {
  .btn-location {
    display: none;
  }

  .btn-location.btn-mobile {
    display: inline-flex;
  }
}

/* ============================================
   VOUCHERS SECTION
   ============================================ */

.vouchers-section-clean {
  margin-bottom: 30px;
}

.voucher-item {
  background-color: var(--white);
  border: 2px dashed var(--primary-color);
  border-radius: 4px;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.voucher-desc {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.voucher-amount {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 700;
}

/* ============================================
   TOTALS SECTION
   ============================================ */

.totals-section-clean {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.total-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    gap: 10px;
}

.total-item:last-child {
  border-bottom: none;
}

.total-item.total-final {
  background-color: var(--light-bg);
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
}

.total-label {
  color: var(--text-light);
  font-weight: 600;
}

.total-amount {
  color: var(--text-dark);
  font-weight: 600;
}

.total-item.total-final .total-amount {
  color: var(--primary-color);
  font-size: 18px;
}

/* ============================================
   COMMENT SECTION
   ============================================ */

.comment-section-clean {
  margin-bottom: 30px;
}

.comment-text {
  background-color: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  padding: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============================================
   HISTORY SECTION
   ============================================ */

.history-section-clean {
  margin-bottom: 30px;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-item-clean {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  padding: 12px 15px;
}

.history-date-clean {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}

.history-status-clean {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 5px;
}

.history-comment-clean {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   ACTION BUTTON
   ============================================ */

.action-button-clean {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.btn-back {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white) !important;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-back:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* ============================================
   MODAL
   ============================================ */

.modal-content {
  border: none;
  border-radius: 4px;
}

.modal-header {
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 15px;
}

.modal-header .modal-title {
  font-weight: 700;
  color: var(--text-dark);
}

.modal-header .close {
  color: var(--text-dark);
  opacity: 0.5;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-body {
  padding: 20px;
  text-align: left;
}

.qr-zoom-img {
  max-width: 100%;
  width: 350px;
  height: 350px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 15px;
}

.qr-code-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Courier New', monospace;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .product-row {
    flex-direction: column;
    gap: 12px;
  }

  .product-details-col {
    flex-wrap: wrap;
  }

  .product-tickets-col {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .order-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-row {
    flex-direction: column;
  }

  .product-tickets-col {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .order-info-clean {
    padding: 10px 0;
  }

  .order-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .order-header h1 {
    font-size: 22px;
  }

  .order-summary {
    gap: 10px;
    padding: 12px;
  }

  .product-row {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }

  .product-details-col {
    gap: 10px;
  }

  .detail-item {
    min-width: 60px;
  }

  .product-footer {
    flex-direction: column;
    padding: 10px 12px;
    gap: 10px;
  }

  .product-actions-col {
    width: 100%;
    flex-direction: column;
  }

  .btn-action {
    width: 100%;
    justify-content: center;
  }

  .product-location-col {
    width: 100%;
  }

  .btn-location {
    width: 100%;
  }

  .ticket-mini {
    min-width: 90px;
  }

  .qr-mini {
    width: 60px;
    height: 60px;
  }

  .qr-zoom-img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .order-header h1 {
    font-size: 18px;
  }

  .section-title {
    font-size: 16px;
    margin: 15px 0 12px 0;
  }

  .product-item {
    margin-bottom: 12px;
  }

  .product-name {
    font-size: 13px;
  }

  .product-options {
    gap: 4px;
  }

  .option-badge {
    font-size: 10px;
  }

  .detail-item {
    min-width: 50px;
  }

  .detail-label {
    font-size: 8px;
  }

  .detail-value {
    font-size: 12px;
  }

  .ticket-mini {
    min-width: 80px;
  }

  .qr-mini {
    width: 50px;
    height: 50px;
  }

  .action-button-clean {
    margin-top: 20px;
    padding-top: 15px;
  }

  .btn-back {
    width: 100%;
    justify-content: center;
  }
}
.history-comment-clean a{
    font-size: 13px;
    color: var(--white) !important;
    line-height: 1.5;
}
/* ========================================
   DEGUSTA OFERTAS - ACCOUNT PAGE ADDON
   Estilos adicionais para página de conta
   Sem conflitar com CSS existente
   ======================================== */

/* ========================================
   VARIÁVEIS CSS (Reutilizando do CSS existente)
   ======================================== */
:root {
  --degusta-account-primary: #C41E3A;
  --degusta-account-secondary: #00A651;
  --degusta-account-highlight: #FFD700;
  --degusta-account-white: #ffffff;
  --degusta-account-dark: #333333;
  --degusta-account-light-gray: #f8f9fa;
  --degusta-account-border: #EEEEEE;
  --degusta-account-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --degusta-account-border-radius: 8px;
  --degusta-account-transition: all 0.3s ease;
}

/* ========================================
   LAYOUT PRINCIPAL - ACCOUNT PAGE
   ======================================== */

#account-account {
  max-width: 1200px;
  margin: 0 auto;
}

#account-account .row {
  display: flex;
  gap: 24px;
}
#account-account .account-new{
	display: flex;
    gap: 15px;
}
/* ========================================
   CONTEÚDO PRINCIPAL
   ======================================== */

.degusta-account-main {
  flex: 1;
  min-width: 0;
}

.degusta-account-main h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--degusta-account-secondary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.degusta-account-main p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--degusta-account-dark);
  margin-bottom: 12px;
}

.degusta-account-main ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.degusta-account-main ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--degusta-account-dark);
  margin-bottom: 8px;
}

.degusta-account-main hr {
  border: 0;
  border-top: 2px solid var(--degusta-account-border);
  margin: 24px 0;
}

/* ========================================
   SIDEBAR - MENU DE NAVEGAÇÃO
   ======================================== */

.degusta-account-sidebar {
  flex: 0 0 280px;
  background-color: var(--degusta-account-white);
  border: 1px solid var(--degusta-account-border);
  border-radius: var(--degusta-account-border-radius);
  padding: 24px;
  box-shadow: var(--degusta-account-shadow);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.degusta-account-sidebar h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--degusta-account-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--degusta-account-primary);
  margin-top: 0;
}

.degusta-account-sidebar h2:not(:first-child) {
  margin-top: 24px;
}

.degusta-account-sidebar .list-unstyled {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.degusta-account-sidebar .list-unstyled li {
  margin: 0;
  padding: 0;
}

.degusta-account-sidebar .list-unstyled li a {
  display: block;
  padding: 6px 0;
  color: var(--degusta-account-dark);
  text-decoration: none;
  font-size: 15px;
  transition: var(--degusta-account-transition);
  border-bottom: 1px solid var(--degusta-account-border);
  position: relative;
}

.degusta-account-sidebar .list-unstyled li:last-child a {
  border-bottom: none;
}

.degusta-account-sidebar .list-unstyled li a:hover {
  color: var(--degusta-account-primary);
  padding-left: 8px;
}

.degusta-account-sidebar .list-unstyled li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--degusta-account-primary);
  transition: var(--degusta-account-transition);
}

.degusta-account-sidebar .list-unstyled li a:hover::before {
  height: 100%;
}

/* ========================================
   ALERT CUSTOMIZADO
   ======================================== */

#account-account .alert {
  border-radius: var(--degusta-account-border-radius);
  border: 1px solid var(--degusta-account-border);
  margin-bottom: 24px;
}

#account-account .alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

#account-account .alert-success i {
  color: #155724;
  margin-right: 8px;
}

/* ========================================
   BREADCRUMB CUSTOMIZADO
   ======================================== */

#account-account .breadcrumb {
  background: transparent;
  padding: 0 0 16px 0;
  margin: 0 0 24px 0;
  border-bottom: 1px solid var(--degusta-account-border);
}

#account-account .breadcrumb li {
  display: inline-block;
  margin-right: 0;
  font-size: 14px;
}

#account-account .breadcrumb li a {
  color: var(--degusta-account-primary);
  text-decoration: none;
  transition: var(--degusta-account-transition);
}

#account-account .breadcrumb li a:hover {
  color: var(--degusta-account-secondary);
  text-decoration: underline;
}

#account-account .breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--degusta-account-border);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 992px) {
  #account-account .row {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .degusta-account-sidebar {
    flex: 1;
    position: static;
    height: auto;
  }

  .degusta-account-main {
    flex: 1;
	text-align: left;
  }
}

@media (max-width: 768px) {
  #account-account {
    padding: 0 16px;
  }

  #account-account .row {
    gap: 16px;
  }
#account-account .account-new{
        display: flex;
        gap: 0px;
        flex-direction: column;
}
  .degusta-account-main h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .degusta-account-main p {
    font-size: 15px;
  }

  .degusta-account-main ul li {
    font-size: 15px;
  }

  .degusta-account-sidebar {
    padding: 16px;
  }

  .degusta-account-sidebar h2 {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .degusta-account-sidebar .list-unstyled li a {
    padding: 10px 0;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #account-account {
    padding: 0 12px;
  }

  .degusta-account-main h1 {
    font-size: 20px;
  }

  .degusta-account-main p {
    font-size: 14px;
  }

  .degusta-account-sidebar {
    padding: 12px;
  }

  .degusta-account-sidebar h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .degusta-account-sidebar .list-unstyled li a {
    padding: 8px 0;
    font-size: 13px;
  }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
.menu-usuario{
	    margin-top: -6px;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.degusta-account-main {
  animation: slideInDown 0.4s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.degusta-account-sidebar {
  animation: slideInRight 0.5s ease-out;
}
#form-pagamento-mercadopago-loja5-pix button{
	font-variant-caps: all-small-caps;
    font-size: 22px;
}
#form-pagamento-mercadopagopro5 button{
	font-variant-caps: all-small-caps;
    font-size: 22px;

}

/* Animação de rotação para o spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilo do botão com pseudo-elemento para loading */
.botao_pagar_cartao::after {
    content: '';
    display: none;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0275d8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    position: relative;
    top: 2px;
}

/* Mostrar loading quando o botão está desabilitado */
.botao_pagar_cartao:disabled::after {
    display: inline-block;
}

/* Adicionar texto "Processando pagamento. Aguarde!" */
.botao_pagar_cartao:disabled {
    position: relative;
}

.botao_pagar_cartao:disabled::before {
    content: 'Processando pagamento. Aguarde!';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: #0275d8;
    white-space: nowrap;
    font-weight: normal;
}

/* Estilo do botão com pseudo-elemento para loading */
.botao_pagar_pix::after {
    content: '';
    display: none;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0275d8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    position: relative;
    top: 2px;
}

/* Mostrar loading quando o botão está desabilitado */
.botao_pagar_pix:disabled::after {
    display: inline-block;
}

/* Adicionar texto "Processando pagamento. Aguarde!" */
.botao_pagar_pix:disabled {
    position: relative;
}

.botao_pagar_pix:disabled::before {
    content: 'Processando pagamento. Aguarde!';
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: #0275d8;
    white-space: nowrap;
    font-weight: normal;
}
/* ========================================
   Mercado Pago Pro 5 - Pix Payment
   Identidade Visual: Degusta Ofertas
   ======================================== */

/* ========================================
   Variáveis de Cores
   ======================================== */
:root {
  --color-primary-green: #00B050;
  --color-primary-red: #C1272D;
  --color-highlight-yellow: #FFFF00;
  --color-white: #FFFFFF;
  --color-text-dark: #333333;
  --color-text-gray: #666666;
  --color-border-gray: #E0E0E0;
  --color-bg-light: #F9F9F9;
  --color-alert-info: #D1ECF1;
  --color-alert-info-border: #BEE5EB;
  --color-alert-info-text: #0C5460;
}

/* ========================================
   Estilos Globais
   ======================================== */
body {
  font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}
/* ========================================
   Formulário Principal
   ======================================== */
#form-pagamento-mercadopago-loja5-pix {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ========================================
   Alerta Informativo
   ======================================== */
.alert.alert-info.attention {
  background-color: var(--color-alert-info);
  border: 2px solid var(--color-primary-green);
  border-radius: 8px;
  color: var(--color-alert-info-text);
  padding: 20px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.alert.alert-info.attention u {
  text-decoration: underline;
  font-weight: 600;
}

/* ========================================
   Grupos de Formulário
   ======================================== */


.form-group label {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   Inputs e Campos de Texto
   ======================================== */
.form-control {
  
  border-radius: 6px;

  font-size: 15px;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  transition: all 0.3s ease;
}



.form-control:disabled {
  background-color: var(--color-bg-light);
  color: var(--color-text-gray);
  cursor: not-allowed;
  opacity: 0.7;
}

.class_input_cartao {
  background-color: var(--color-bg-light);
  font-weight: 600;
}

/* ========================================
   Logo Pix
   ======================================== */
.form-group img[title="pagar com pix"] {
  max-width: 150px;
  height: auto;
  margin: 20px 0;
  display: block;
}

/* ========================================
   Texto de Ajuda
   ======================================== */
.help-block {
  display: block;
  font-size: 13px;
  color: var(--color-text-gray);
  margin-top: 8px;
  margin-bottom: 10px;
  font-style: italic;
}

/* ========================================
   Botão de Pagamento
   ======================================== */
.button.btn.btn-success.botao_pagar_pix {
  background-color: var(--color-primary-red);
  border: none;
  border-radius: 6px;
  color: var(--color-white);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display:flex;
  align-items: center;
  gap: 10px;
margin-top: 15px;
}



.button.btn.btn-success.botao_pagar_pix:disabled {
  background-color: #CCCCCC;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.button.btn.btn-success.botao_pagar_pix i {
  font-size: 18px;
}

/* ========================================
   Grupo de Botões
   ======================================== */
.form-group.buttons {
  margin-top: 10px;
  padding-top: 5px;

}

/* ========================================
   Layout Responsivo
   ======================================== */
.form-horizontal .form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ========================================
   Responsividade Mobile
   ======================================== */
@media (max-width: 768px) {
  #form-pagamento-mercadopago-loja5-pix {
    padding: 20px 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  .button.btn.btn-success.botao_pagar_pix {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
    font-size: 15px;
  }

  .alert.alert-info.attention {
    padding: 15px;
    font-size: 14px;
  }

  .form-group img[title="pagar com pix"] {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  #form-pagamento-mercadopago-loja5-pix {
    padding: 15px 10px;
  }

  .form-control {
    padding: 5px;
    font-size: 13px;
  }

  .button.btn.btn-success.botao_pagar_pix {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .button.btn.btn-success.botao_pagar_pix i {
    font-size: 16px;
  }

  .alert.alert-info.attention {
    padding: 12px;
    font-size: 13px;
  }
}

/* ========================================
   Animações e Transições
   ======================================== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#form-pagamento-mercadopago-loja5-pix {
  animation: slideInUp 0.5s ease-out;
}

/* ========================================
   Acessibilidade
   ======================================== */
.form-control:focus,
.button.btn.btn-success.botao_pagar_pix:focus {
  outline: 1px solid var(--color-primary-red);
  outline-offset: 1px;
  border:none;
}

/* ========================================
   Estilos de Impressão
   ======================================== */
@media print {
  .button.btn.btn-success.botao_pagar_pix {
    display: none;
  }

  #form-pagamento-mercadopago-loja5-pix {
    box-shadow: none;
  }
}

/* ========================================
   Mercado Pago Pro 5 - Validation Styles
   CPF/CNPJ Validation Feedback
   ======================================== */

/* ========================================
   Mensagem de Erro
   ======================================== */
.erro-validacao {
  color: #C1272D;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: slideInUp 0.3s ease-out;
}

.erro-validacao i {
  font-size: 14px;
}

/* ========================================
   Campo com Erro
   ======================================== */
.form-control:invalid {
  border-color: #C1272D;
  background-color: #FFF5F5;
}

.form-control:invalid:focus {
  border-color: #C1272D;
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}

/* ========================================
   Campo com Sucesso
   ======================================== */


/* ========================================
   Ícone de Validação
   ======================================== */
.form-group {
  position: relative;
}

.form-group .validation-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  display: none;
  pointer-events: none;
}

.form-group .validation-icon.valid {
  color: #00B050;
  display: block;
}

.form-group .validation-icon.invalid {
  color: #C1272D;
  display: block;
}

/* ========================================
   Ajuste de Padding para Ícone
   ======================================== */
.form-control.has-validation {
  padding-right: 40px;
}

/* ========================================
   Animação de Erro
   ======================================== */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.form-control.shake {
  animation: shake 0.4s ease-in-out;
}

/* ========================================
   Dica de Ajuda
   ======================================== */
.help-block {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 8px;
  margin-bottom: 10px;
  font-style: italic;
}

.help-block.info {
  color: #00B050;
  font-weight: 600;
}

.help-block.warning {
  color: #FFC107;
  font-weight: 600;
}

.help-block.error {
  color: #C1272D;
  font-weight: 600;
}

/* ========================================
   Responsividade Mobile
   ======================================== */
@media (max-width: 768px) {
  .erro-validacao {
    font-size: 12px;
    margin-top: 6px;
  }

  .form-group .validation-icon {
    right: 10px;
    font-size: 16px;
  }

  .help-block {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .erro-validacao {
    font-size: 11px;
    gap: 4px;
  }

  .form-group .validation-icon {
    right: 8px;
    font-size: 14px;
  }

  .help-block {
    font-size: 11px;
  }
}

/* ========================================
   Transição Suave
   ======================================== */
.form-control {
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ========================================
   Impressão
   ======================================== */
@media print {
  .erro-validacao,
  .form-group .validation-icon {
    display: none !important;
  }
}
/* ========================================
   Mercado Pago Pro 5 - Success Page
   Identidade Visual: Degusta Ofertas
   ======================================== */

/* ========================================
   Variáveis de Cores
   ======================================== */
:root {
  --color-primary-green: #00B050;
  --color-primary-red: #C1272D;
  --color-highlight-yellow: #FFFF00;
  --color-white: #FFFFFF;
  --color-text-dark: #333333;
  --color-text-gray: #666666;
  --color-border-gray: #E0E0E0;
  --color-bg-light: #F9F9F9;
  --color-success-bg: #D4EDDA;
  --color-success-border: #C3E6CB;
  --color-success-text: #155724;
  --color-warning-bg: #FFF3CD;
  --color-warning-border: #FFEEBA;
  --color-warning-text: #856404;
  --color-error-bg: #F8D7DA;
  --color-error-border: #F5C6CB;
  --color-error-text: #721C24;
}

/* ========================================
   Estilos Globais
   ======================================== */
body {
  font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}

/* ========================================
   Container Principal
   ======================================== */
#common-success {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}


/* ========================================
   Informações de Transação
   ======================================== */
#common-success > .row > div[id="content"] > p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

#common-success > .row > div[id="content"] > p img {
  max-width:250px;
  height: auto;
  margin-right: 15px;
  vertical-align: middle;
}

/* ========================================
   Detalhes da Transação
   ======================================== */
#common-success p span {
  font-weight: 600;
  color: var(--color-text-dark);
}

#common-success p span.price {
  font-size: 24px;
  color: var(--color-primary-red);
  display: inline-block;
  margin:0;
}

#common-success p span u {
  text-decoration: underline;
  color: var(--color-primary-green);
  font-weight: 700;
}

/* ========================================
   Código Pix (Copiar/Colar)
   ======================================== */
#selectablepix {
  display: block;
  background-color: var(--color-bg-light);
  border: 2px solid var(--color-primary-green);
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  word-break: break-all;
  user-select: all;
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: auto;
}

/* ========================================
   Botão Copiar Pix
   ======================================== */
button.btn.btn-primary {
  background-color: var(--color-primary-green);
  border: none;
  border-radius: 6px;
  color: var(--color-white);
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;

}



button.btn.btn-primary i {
  font-size: 2.2rem;
}

/* ========================================
   Botão Imprimir Boleto
   ======================================== */
button.button.btn.btn-primary {
  background-color: var(--color-primary-red);
  margin-right: 10px;
}



/* ========================================
   Imagens (QR Code, Código de Barras)
   ======================================== */
#common-success span > img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--color-primary-green);
  border-radius: 8px;
  padding: 10px;
  background-color: var(--color-white);
  margin: 15px 0;
  display: block;
    margin: auto;
}

/* ========================================
   Links
   ======================================== */
#common-success a {
  color: var(--color-primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#common-success a:hover {
  color: var(--color-primary-red);
  text-decoration: underline;
}

a:focus {
  outline: none !important;
}
/* ========================================
   Grupo de Botões (Continuar)
   ======================================== */
.buttons {
  margin-top: 40px;
  padding-top: 15px;
  text-align: right;
}

.buttons .pull-right a.btn.btn-primary {
    background-color: var(--color-primary-green);
    padding: 7px 40px;
    font-size: 16px;
    display: flex;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-items: center;
}

.buttons .pull-right a.btn.btn-primary:hover {
  background-color: #008C3A;

  transform: translateY(-2px);
}

/* ========================================
   Status de Pagamento - Cores Dinâmicas
   ======================================== */
/* Aprovado */
p:has(span:contains("Aprovado")) {
  background-color: var(--color-success-bg);
  border-left: 4px solid var(--color-primary-green);
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
}

/* Pendente/Aguardando */
p:has(span:contains("Pendente")),
p:has(span:contains("Aguardando")) {
  background-color: var(--color-warning-bg);
  border-left: 4px solid #FFC107;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
}

/* Negado */
p:has(span:contains("Negado")) {
  background-color: var(--color-error-bg);
  border-left: 4px solid var(--color-primary-red);
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
}
/* Negado */
p:has(span:contains("Cancelado")) {
  background-color: var(--color-error-bg);
  border-left: 4px solid var(--color-primary-red);
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
}

/* ========================================
   Contador Reverso Pix
   ======================================== */
#contador-reverso-pix {
  font-weight: 600;
  color: var(--color-primary-green);
}

#contador-reverso-pix b {
  color: var(--color-primary-red);
  font-weight: 700;
}

/* ========================================
   Responsividade Mobile
   ======================================== */
@media (max-width: 768px) {
  #common-success {
    padding: 20px 15px;
  }

  #content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .breadcrumb {
    padding: 10px 15px;
    font-size: 13px;
  }

  button.btn.btn-primary,
  button.button.btn.btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    margin: 10px 0;
  }

  #selectablepix {
    font-size: 12px;
    padding: 12px;
  }

  #common-success p span.price {
    font-size: 20px;
  }

  .buttons {
    text-align: center;
  }

  .buttons .pull-right {
    float: none !important;
  }

  .buttons .pull-right a.btn.btn-primary {
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  #common-success {
    padding: 15px 10px;
  }

  #content h1 {
		margin-bottom: 15px;
        padding-bottom: 10px;
        margin-top: 10px;
        font-size: 1.6rem;
        text-transform: uppercase;
        color: #c41e3a;
  }

  .breadcrumb {
    padding: 8px 10px;
    font-size: 12px;
    gap: 5px;
  }

  #common-success > .row > div[id="content"] > p {
    font-size: 14px;
  }

  button.btn.btn-primary,
  button.button.btn.btn-primary {
    padding: 10px 15px;
    font-size: 13px;
    margin: 8px 0;
  }

  #selectablepix {
    font-size: 11px;
    padding: 10px;
    margin: 10px 0;
  }

  #common-success p span.price {
    font-size: 18px;
  }

  #common-success > .row > div[id="content"] > p img {
        max-width: 100%;
        margin: auto;
  }
  .pagamento_mp{
	  text-align:left;
  }
  .qrcode-pix{
	width: auto;
    margin-top: 20px;
    display: block;
    margin-bottom: 10px;
}
}

/* ========================================
   Animações
   ======================================== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#content h1 {
  animation: slideInDown 0.5s ease-out;
}

#common-success p {
  animation: fadeIn 0.6s ease-out;
}

/* ========================================
   Acessibilidade
   ======================================== */
button.btn.btn-primary:focus,
.buttons .pull-right a.btn.btn-primary:focus {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 2px;
}

#selectablepix:focus {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 2px;
}

/* ========================================
   Impressão
   ======================================== */
@media print {
  .breadcrumb,
  button.btn.btn-primary,
  button.button.btn.btn-primary,
  .buttons {
    display: none;
  }

  #common-success {
    padding: 0;
  }

  #selectablepix {
    border: 1px solid var(--color-text-dark);
  }
}
/* Estilos Customizados para o Menu Degusta */
.degusta-menu-fluid {
  width: 100%;
  z-index: 9999;
  transition: all .25s ease;
}

.degusta-menu-fluid.degusta-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.degusta-menu-navbar {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}

.degusta-menu-navbar .navbar-nav > li > a {
  text-transform: none;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.caret-right {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid currentColor;
}

.mobilemenu {
  display: none;
}

.degusta-mobile-title {
  margin: 12px 10px 8px;
  font-size: 18px;
  font-weight: 600;
}

.degusta-mobile-hr-wrap hr {
  margin: 10px 0;
}

@media (min-width: 768px) {
  .degusta-menu-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .degusta-menu-navbar .navbar-header {
    display: block;
  }

  .mobilemenu {
    display: block;
  }

  #menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 86%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    transition: left .3s ease;
    box-shadow: 2px 0 12px rgba(0,0,0,.22);
    padding-top: 15px;
  }

  #menu-mobile.active {
    left: 0;
  }

  #menu-mobile .navbar-nav {
    float: none;
    margin: 0;
    width: 100%;
  }

  #menu-mobile .navbar-nav > li {
    float: none;
    display: block;
  }

  #menu-mobile .navbar-nav > li > a,
  #menu-mobile .dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #333;
  }

  #menu-mobile .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    display: none;
    border: 0;
    box-shadow: none;
    background: #f8f8f8;
  }

  #menu-mobile .dropdown.open > .dropdown-menu,
  #menu-mobile .dropdown-submenu.open > .dropdown-menu {
    display: block;
  }

  .dropdown-submenu > .dropdown-menu {
    margin: 0;
    padding-left: 15px;
  }

  .caret-right {
    float: right;
    margin-top: 7px;
    transform: rotate(90deg);
  }

  #logo.mobilemenu {
    padding: 10px 45px 10px 15px;
  }

  #close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 0;
    color: #333;
    font-size: 22px;
    line-height: 1;
    z-index: 10001;
  }
}
.tracking-links-container {
  margin-bottom: 20px;
}

.tracking-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.tracking-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tracking-product {
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.tracking-date {
  font-size: 13px;
  color: #777;
}

.tracking-label {
  font-weight: 600;
  color: #444;
}

.tracking-actions {
	display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
}

.tracking-input {
  font-size: 13px;
  background: #f7f7f7;
  cursor: pointer;
}
.tracking-box{
	padding:10px;
}
/* Empilha e alinha botões à esquerda no mobile */
@media (max-width: 767px) {
  .tracking-actions {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.well1{
	background-color:#24ca30;
}
.well2{
	background-color:#f8f8f8;
}
.well3{
	background-color:#dcffde;
}
.well4{
	background-color:#aed5ff;
}
.well-saldo{
	font-size:2rem;
	font-weight: 600;
}