/* RESET TOTAL */
.conta-dropdown *,
.conta-dropdown li,
.conta-dropdown li a {
    color: inherit !important;
}

/* DROPDOWN CONTAINER */
.conta-dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    background-color: #ffffff !important;
    border-radius: 0 !important;
    padding: 0 !important;
    padding-top: 25px !important;
    width: 210px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s, visibility 0.3s !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e5e5e5 !important;
}

.conta-dropdown::before {
    content: "Olá," !important;
    position: absolute !important;
    top: 8px !important;
    left: 15px !important;
    font-size: 11px !important;
    color: #1a1a1a !important;
    font-weight: 500 !important;
    -webkit-text-fill-color: #1a1a1a !important;
}

.conta-container:hover .conta-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
}

/* LISTA */
.conta-dropdown ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.conta-dropdown li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.conta-dropdown li:last-child {
    border-bottom: none !important;
}

/* TODOS OS LINKS - PADRÃO BRANCO */
.conta-dropdown li a {
    display: block !important;
    padding: 12px 15px !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: background 0.3s ease !important;
    -webkit-text-fill-color: #000000 !important;
}

.conta-dropdown li a:hover {
    background-color: #f0f0f0 !important;
}

/* PRIMEIRO LINK - MINHA CONTA - PRETO */
.conta-dropdown li:nth-child(1) a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.conta-dropdown li:nth-child(1) a:hover {
    background-color: #222222 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.conta-dropdown li:nth-child(1) a i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 10px !important;
}

/* RASTREAR PEDIDO */
.conta-dropdown .rastrear-pedido {
    padding: 15px !important;
    background-color: #f9f9f9 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    border-top: 1px solid #e5e5e5 !important;
}

.rastreio-input {
    display: flex !important;
    gap: 5px !important;
    margin-top: 8px !important;
}

.rastreio-input input {
    flex: 1 !important;
    padding: 8px 10px !important;
    border: 1px solid #dddddd !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    border-radius: 3px !important;
    font-size: 12px !important;
}

.rastreio-input input::placeholder {
    color: #999999 !important;
}

.rastreio-input button {
    padding: 8px 12px !important;
    background-color: #000000 !important;
    border: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
}

.rastreio-input button i {
    color: #ffffff !important;
    font-size: 14px !important;
}

/* ARROW UP */
.arrow-up {
    display: none !important;
}

/* USER LINK */
.conta-container .user-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #ffffff !important;
    padding: 10px !important;
}

.conta-container .user-link i {
    font-size: 18px !important;
    color: #ffffff !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .conta-dropdown {
        width: 240px !important;
    }
    
    .conta-container .user-link span {
        display: none !important;
    }
}