.db3-head{
    width: 100%;
    max-width: 1200px;
  display:flex;
  flex-direction: column;
  gap:16px;
  align-items:center;
  justify-content: center;
}
.head-wrap{
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.db3-icon{
  width:50px;
  height:50px;
  aspect-ratio: 1 / 1;
  border-radius:999px;
  background: transparent;
  color:#D2AB67;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.db3-head h2{
  font-size: 60px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  line-height: 1em;
  letter-spacing: 0.5px;
  color: #D2AB67;
  text-align: center;
}

.db3-head p{
  color:#7C5724;
  font-size:16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height:1.45;
  margin: 0 15%;
  text-align: center;
}

.db3-head a{ color: var(--accent); text-decoration: none; }
.db3-head a:hover{ text-decoration: underline; }


.db3-wrap{
  --fg:#fff;
  --accent:#D2AB67;
  --line:rgba(255,255,255,.18);
  --muted:rgba(255,255,255,.75);
  color:var(--fg);
  border-radius:40px;
  padding:0 60px;
  width: 100%;
  max-width: 980px;
  margin: 60px auto 0;
}
.db3-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.db3-item{
    background: transparent;
    border: 0.75px solid #D2AB67;
    border-radius: 5px;
    padding: 14px 16px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 16px;
}


.db3-item span{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #D2AB67;
}

.db3-item strong{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #D2AB67;
}

.db3-total{
    border: 1px solid #CBBBA0;
    background: rgba(203, 187, 160, 0.25);
}
.db3-total span{
    color: #D2AB67;
}

.db3-note{
    margin-top: 30px;
    color: #506F6A;
    font-size: 13px;
    letter-spacing: 0.5px;
    min-height: 1em;
}

.db3-actions{
    width: 100%;
    max-width: 980px;
    margin-top:30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
    

}

.db3-status{
    background: transparent;
    border-radius: 5px;
    padding: 14px 16px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #1E3A34;
}

.db3-status span{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1E3A34;
}

.db3-status strong{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1E3A34;
}

.db3-home{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px 12px;
    border-radius: 5px;
    text-decoration: none;
    background: #1E3A34;
    border: 1px solid #1E3A34;

}
.db3-home:hover{
  background-color: rgba(30, 58, 52,0.25);
  border: 1px solid #1E3A34;
  color: #1E3A34;

}
/*CHANGE STYLE*/
.db3-retry{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #3E2714 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px 12px;
    border-radius: 5px;
    background:#CBBBA0;
    text-decoration: none;
    border: 1px solid #CBBBA0;
}
.db3-retry a{
    color: #3E2714 !important;
}
.db3-retry a:hover{
    color: #ffffff !important;
}
.db3-retry:hover{
    color: #ffffff !important;
    background: #506F6A;
    border: 1px solid #506F6A;
}

  .db3-retry.is-hidden{ display:none; }
  .db3-retry.is-loading{ opacity:.7; pointer-events:none; }
  .db3-icon.is-fail{ font-weight:700; }
  .db3-icon.is-ok{ font-weight:700; }
  




@media (max-width: 767px){
  .db3-wrap{ 
    padding:30px; 
  }
  .db3-head h2{
    font-size: 26px;
  }
  .db3-head p{
  margin: 0;
}
  .db3-actions{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

}


/* Ascunde icon-ul (dar rămâne în DOM pentru JS) */
#db3-icon{
  display: none !important;
}